/* Emergency UI recovery patch for ironcrest theme */

body.body-landing-bg {
    margin: 0;
    padding-top: 0;
}

.body-landing-bg > .ic-page:not(.ic-home) {
    padding-top: 72px;
}

.ic-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0 22px;
    pointer-events: none;
    transition: padding 0.22s ease, transform 0.22s ease;
}

.ic-glass-nav {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--ic-border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.1);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    pointer-events: auto;
}

.ic-header.is-scrolled {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-1px);
}

.ic-glass-nav.is-scrolled {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
    border-color: rgba(185, 28, 28, 0.2);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
}

.ic-nav-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 18px;
}

.ic-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ic-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ic-brand img {
    display: block;
    max-width: none;
}

.ic-nav-toggle {
    display: none;
    border: 1px solid var(--ic-border);
    background: #ffffff;
    color: var(--ic-text);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.ic-nav-menu {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.ic-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.ic-nav-item {
    position: relative;
}

.ic-nav-link,
.ic-nav-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: var(--ic-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
}

.ic-nav-link:hover,
.ic-nav-trigger:hover,
.ic-nav-item.active .ic-nav-link {
    color: var(--ic-red);
    background: rgba(185, 28, 28, 0.06);
}

.ic-nav-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.ic-has-mega.is-open .ic-nav-trigger::after,
.ic-has-mega:hover .ic-nav-trigger::after {
    transform: rotate(-135deg) translateY(-1px);
}

.ic-mega-menu,
.ic-mega-menu-small {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 560px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1200;
}

.ic-mega-menu-small {
    min-width: 290px;
}

.ic-has-mega:hover .ic-mega-menu,
.ic-has-mega:hover .ic-mega-menu-small,
.ic-has-mega.is-open .ic-mega-menu,
.ic-has-mega.is-open .ic-mega-menu-small {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ic-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
}

.ic-mega-grid-single {
    grid-template-columns: 1fr;
}

.ic-mega-column {
    display: grid;
    gap: 6px;
}

.ic-mega-label {
    margin: 0 0 4px;
    color: #7b8596;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.ic-mega-column a {
    display: block;
    color: var(--ic-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding: 4px 0;
}

.ic-mega-column a:hover {
    color: var(--ic-red);
}

.ic-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.ic-lang {
    height: 40px;
    min-width: 112px;
    border-radius: 6px;
    border: 1px solid var(--ic-border);
    background: #ffffff;
    color: var(--ic-text);
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.ic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 12px 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ic-btn-primary {
    background: var(--ic-red);
    border-color: var(--ic-red);
    color: #ffffff;
}

.ic-btn-primary:hover {
    background: var(--ic-red-deep);
    border-color: var(--ic-red-deep);
    color: #ffffff;
}

.ic-btn-secondary {
    background: #ffffff;
    border-color: var(--ic-border);
    color: var(--ic-text);
}

.ic-btn-secondary:hover {
    color: var(--ic-red);
    border-color: rgba(185, 28, 28, 0.35);
    background: #fff6f6;
}

@media (max-width: 1199px) {
    .ic-nav-wrap {
        gap: 14px;
        padding: 12px 14px;
    }

    .ic-nav-list {
        gap: 0;
    }

    .ic-nav-link,
    .ic-nav-trigger {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    body.body-landing-bg {
        padding-top: 0;
    }

    .body-landing-bg > .ic-page:not(.ic-home) {
        padding-top: 64px;
    }

    .ic-header {
        padding: 0 10px;
    }

    .ic-header.is-scrolled {
        padding-top: 0;
        padding-bottom: 0;
        transform: none;
    }

    .ic-glass-nav {
        width: 100%;
    }

    .ic-nav-wrap {
        gap: 10px;
        padding: 10px 12px;
    }

    .ic-nav-toggle {
        display: inline-flex;
    }

    .ic-nav-menu {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: all 0.2s ease;
        background: #ffffff;
        border: 1px solid rgba(185, 28, 28, 0.18);
        border-radius: 10px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
        padding: 12px;
        z-index: 1250;
    }

    .ic-nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ic-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .ic-nav-item {
        width: 100%;
    }

    .ic-nav-link,
    .ic-nav-trigger {
        width: 100%;
        justify-content: space-between;
        text-align: left;
        padding: 10px 10px;
    }

    .ic-mega-menu,
    .ic-mega-menu-small {
        position: static;
        min-width: 100%;
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
        border-radius: 8px;
        box-shadow: none;
    }

    .ic-has-mega.is-open .ic-mega-menu,
    .ic-has-mega.is-open .ic-mega-menu-small {
        display: block;
    }

    .ic-mega-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .ic-nav-actions {
        margin-left: auto;
        gap: 8px;
    }

    .ic-nav-actions .ic-btn-secondary,
    .ic-lang {
        display: none;
    }

    .ic-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Current account page recovery */
.ic-current-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 52px;
    background:
        radial-gradient(920px 520px at 76% 18%, rgba(30, 64, 175, 0.26), transparent 62%),
        linear-gradient(148deg, #0d1a3f 0%, #12275c 52%, #18336f 100%);
}

.ic-current-shell {
    width: min(1280px, calc(100% - 44px));
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    box-shadow: 0 20px 44px rgba(4, 16, 42, 0.32);
}

.ic-current-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 42px;
    padding: 38px 34px 30px;
}

.ic-current-copy {
    max-width: 620px;
}

.ic-current-kicker {
    margin: 0 0 10px;
    color: #f4f7ff;
    opacity: 0.88;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.ic-current-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.ic-current-copy > p:not(.ic-current-kicker) {
    margin: 18px 0 0;
    color: rgba(233, 241, 255, 0.94);
    font-size: 18px;
    line-height: 1.62;
}

.ic-current-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ic-current-btn {
    background: #ffffff;
    color: #0f265a;
    border-color: #ffffff;
    height: 48px;
    padding: 0 26px;
    font-size: 14px;
    font-weight: 800;
}

.ic-current-btn:hover {
    background: #eef4ff;
    border-color: #eef4ff;
    color: #0b2255;
}

.ic-current-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.ic-current-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.ic-current-btn-secondary-dark {
    background: #ffffff;
    color: #111827;
    border-color: rgba(15, 23, 42, 0.16);
}

.ic-current-btn-secondary-dark:hover {
    background: #fff5f5;
    color: var(--ic-red);
    border-color: rgba(185, 28, 28, 0.35);
}

.ic-current-metrics {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ic-current-metrics article {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
}

.ic-current-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.15;
}

.ic-current-metrics span {
    display: block;
    margin-top: 4px;
    color: rgba(229, 238, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
}

.ic-current-media {
    display: grid;
    justify-items: center;
}

.ic-current-device {
    position: relative;
    width: min(460px, 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    padding: 24px;
    backdrop-filter: blur(5px);
}

.ic-current-device img {
    display: block;
    width: 100%;
    border-radius: 18px;
    transform: rotate(-7deg);
    box-shadow: 0 24px 28px rgba(4, 16, 43, 0.38);
}

.ic-current-floating-card {
    position: absolute;
    right: 4%;
    top: 50%;
    width: min(240px, 66%);
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(140deg, #1f4fd4, #16347f);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(6, 22, 59, 0.4);
}

.ic-current-floating-card p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.ic-current-floating-card span {
    display: block;
    margin-top: 8px;
    color: rgba(238, 244, 255, 0.94);
    font-size: 15px;
    font-weight: 700;
}

.ic-current-floating-feed {
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    padding: 11px 12px;
}

.ic-current-floating-feed strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-current-floating-feed p {
    margin: 7px 0 0;
    color: rgba(235, 243, 255, 0.95);
    font-size: 13px;
    line-height: 1.4;
}

.ic-current-live {
    margin: 0 34px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.09);
    padding: 16px;
}

.ic-current-live-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.ic-current-live-head strong {
    color: #ffffff;
    font-size: 15px;
}

.ic-current-live-head span {
    color: rgba(222, 234, 255, 0.9);
    font-size: 12px;
}

.ic-current-rate-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ic-current-rate-list li {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 31, 80, 0.34);
    padding: 10px 12px;
    display: grid;
    gap: 6px;
}

.ic-current-rate-list span {
    color: rgba(224, 236, 255, 0.94);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.ic-current-rate-value {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1;
}

.ic-current-feature,
.ic-current-switch,
.ic-current-tools,
.ic-current-lifestyle {
    padding: 84px 0;
}

.ic-current-feature-shell,
.ic-current-switch-shell,
.ic-current-tools-shell,
.ic-current-lifestyle-shell {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.ic-current-feature-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 52px;
}

.ic-current-feature-alt .ic-current-feature-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ic-current-feature-media img {
    display: block;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.ic-current-feature-kicker {
    margin: 0 0 12px;
    color: var(--ic-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ic-current-feature-copy h2,
.ic-current-switch-copy h2,
.ic-current-switch-panel h3,
.ic-current-tools-head h2,
.ic-current-lifestyle-head h2 {
    margin: 0;
    color: var(--ic-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.ic-current-feature-copy h2,
.ic-current-switch-copy h2,
.ic-current-tools-head h2,
.ic-current-lifestyle-head h2 {
    font-size: clamp(30px, 4vw, 50px);
}

.ic-current-switch-panel h3 {
    font-size: clamp(20px, 2.6vw, 32px);
}

.ic-current-feature-copy p,
.ic-current-switch-copy p,
.ic-current-switch-panel p {
    margin: 18px 0 0;
    color: var(--ic-muted);
    font-size: 17px;
    line-height: 1.66;
}

.ic-current-feature-note,
.ic-current-tool-legal {
    font-size: 14px !important;
    color: #64748b !important;
}

.ic-current-feature-media-card {
    display: grid;
    justify-items: center;
}

.ic-current-feature-mini-card {
    width: min(320px, 88%);
    margin-top: -48px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    padding: 22px;
    text-align: center;
}

.ic-current-feature-mini-card strong {
    display: block;
    color: var(--ic-text);
    font-size: 22px;
    line-height: 1.2;
}

.ic-current-feature-mini-card p {
    margin: 10px 0 0;
    color: var(--ic-muted);
    font-size: 15px;
}

.ic-current-switch-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 42px;
}

.ic-current-switch-media {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    padding: 24px;
}

.ic-current-switch-media > img {
    display: block;
    width: 100%;
    border-radius: 18px;
}

.ic-current-switch-panel {
    position: absolute;
    left: 20px;
    top: 20px;
    width: min(336px, 56%);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.ic-current-switch-badge {
    margin-top: 16px;
}

.ic-current-switch-badge span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(185, 28, 28, 0.08);
    color: var(--ic-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-current-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ic-current-tool-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    padding: 24px 22px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.ic-current-tool-icon {
    display: inline-flex;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(185, 28, 28, 0.08), rgba(185, 28, 28, 0.02));
}

.ic-current-tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic-current-tool-card h3 {
    margin: 0 0 12px;
    color: var(--ic-text);
    font-size: 22px;
    line-height: 1.25;
}

.ic-current-tool-card p {
    margin: 0;
    color: var(--ic-muted);
    font-size: 15px;
    line-height: 1.68;
}

.ic-current-tool-card .ic-current-btn-secondary-dark {
    margin-top: 20px;
}

.ic-current-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ic-current-lifestyle-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
}

.ic-current-lifestyle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 20, 0.08) 0%, rgba(7, 10, 20, 0.58) 100%);
}

.ic-current-lifestyle-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic-current-lifestyle-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
    color: #ffffff;
}

.ic-current-lifestyle-copy h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
}

.ic-current-lifestyle-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .ic-current-grid,
    .ic-current-feature-shell,
    .ic-current-feature-alt .ic-current-feature-shell,
    .ic-current-switch-shell {
        grid-template-columns: 1fr;
    }

    .ic-current-live {
        margin: 0 24px 24px;
    }

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

@media (max-width: 991px) {
    .ic-current-hero {
        padding: 94px 0 44px;
    }

    .ic-current-shell {
        width: calc(100% - 18px);
        border-radius: 16px;
    }

    .ic-current-grid {
        padding: 24px 18px 14px;
        gap: 18px;
    }

    .ic-current-copy h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .ic-current-copy > p:not(.ic-current-kicker) {
        font-size: 16px;
    }

    .ic-current-metrics,
    .ic-current-rate-list,
    .ic-current-tools-grid,
    .ic-current-lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .ic-current-live {
        margin: 0 14px 16px;
    }

    .ic-current-live-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ic-current-device {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .ic-current-device img {
        transform: none;
    }

    .ic-current-floating-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .ic-current-feature,
    .ic-current-switch,
    .ic-current-tools,
    .ic-current-lifestyle {
        padding: 58px 0;
    }

    .ic-current-feature-shell,
    .ic-current-switch-shell,
    .ic-current-tools-shell,
    .ic-current-lifestyle-shell {
        width: calc(100% - 18px);
    }

    .ic-current-switch-media {
        border-radius: 16px;
        padding: 14px;
    }

    .ic-current-switch-panel {
        position: static;
        width: 100%;
        margin-bottom: 12px;
        padding: 16px;
        border-radius: 14px;
    }

    .ic-current-feature-mini-card {
        width: calc(100% - 16px);
        margin-top: -24px;
    }
}

/* Current account spacing + alignment tune */
.ic-current-hero {
    padding: 104px 0 64px;
}

.ic-current-shell,
.ic-current-feature-shell,
.ic-current-switch-shell,
.ic-current-tools-shell,
.ic-current-lifestyle-shell {
    width: min(1220px, calc(100% - 48px));
}

.ic-current-grid {
    align-items: start;
    gap: clamp(30px, 4vw, 50px);
    padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 36px) clamp(24px, 2.6vw, 34px);
}

.ic-current-copy {
    max-width: 640px;
    padding-top: 6px;
}

.ic-current-copy h1 {
    max-width: 11ch;
}

.ic-current-copy > p:not(.ic-current-kicker) {
    margin-top: 16px;
    max-width: 52ch;
}

.ic-current-actions {
    margin-top: 24px;
}

.ic-current-metrics {
    margin-top: 28px;
    gap: 14px;
}

.ic-current-metrics article {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ic-current-media {
    align-self: stretch;
}

.ic-current-device {
    width: min(490px, 100%);
    margin-left: auto;
}

.ic-current-live {
    margin: 0 clamp(18px, 2.5vw, 34px) clamp(22px, 2.8vw, 34px);
    padding: 18px;
}

.ic-current-feature,
.ic-current-switch,
.ic-current-tools,
.ic-current-lifestyle {
    padding: 92px 0;
}

.ic-current-switch-copy {
    max-width: 560px;
}

.ic-current-switch-panel {
    max-width: 360px;
}

.ic-current-tools-head,
.ic-current-lifestyle-head {
    margin-bottom: 24px;
}

.ic-current-tools-head h2,
.ic-current-lifestyle-head h2 {
    max-width: 18ch;
}

.ic-current-tool-card,
.ic-current-lifestyle-card {
    height: 100%;
}

@media (max-width: 1199px) {
    .ic-current-shell,
    .ic-current-feature-shell,
    .ic-current-switch-shell,
    .ic-current-tools-shell,
    .ic-current-lifestyle-shell {
        width: calc(100% - 32px);
    }

    .ic-current-grid {
        padding: 28px 24px 20px;
    }

    .ic-current-device {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .ic-current-hero {
        padding: 82px 0 44px;
    }

    .ic-current-shell,
    .ic-current-feature-shell,
    .ic-current-switch-shell,
    .ic-current-tools-shell,
    .ic-current-lifestyle-shell {
        width: calc(100% - 22px);
    }

    .ic-current-grid {
        padding: 22px 16px 18px;
        gap: 20px;
    }

    .ic-current-copy {
        padding-top: 0;
    }

    .ic-current-copy h1,
    .ic-current-copy > p:not(.ic-current-kicker) {
        max-width: 100%;
    }

    .ic-current-actions {
        gap: 10px;
    }

    .ic-current-actions .ic-btn {
        width: 100%;
    }

    .ic-current-live {
        margin: 0 12px 14px;
        padding: 14px;
    }

    .ic-current-feature,
    .ic-current-switch,
    .ic-current-tools,
    .ic-current-lifestyle {
        padding: 62px 0;
    }

    .ic-current-tools-head,
    .ic-current-lifestyle-head {
        margin-bottom: 18px;
    }
}

@media (max-width: 575px) {
    .ic-current-shell,
    .ic-current-feature-shell,
    .ic-current-switch-shell,
    .ic-current-tools-shell,
    .ic-current-lifestyle-shell {
        width: calc(100% - 16px);
    }

    .ic-current-copy h1 {
        font-size: clamp(28px, 10vw, 38px);
    }

    .ic-current-rate-list li,
    .ic-current-metrics article,
    .ic-current-tool-card {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Footer blue palette override */
.ic-footer {
    background: linear-gradient(180deg, #0c3ca5 0%, #0a3188 56%, #09286f 100%);
    color: #dbe7ff;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ic-footer::before {
    background:
        radial-gradient(circle at 14% 20%, rgba(120, 170, 255, 0.28) 0%, rgba(120, 170, 255, 0) 44%),
        radial-gradient(circle at 85% 84%, rgba(170, 205, 255, 0.2) 0%, rgba(170, 205, 255, 0) 40%);
}

.ic-footer h4,
.ic-contact-item span {
    color: #f7fbff;
}

.ic-footer-brand p {
    color: rgba(229, 239, 255, 0.92);
}

.ic-footer-nav a,
.ic-contact-item a {
    color: #f3f7ff;
}

.ic-footer-nav a:hover,
.ic-contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ic-footer-bottom p {
    color: rgba(224, 236, 255, 0.86);
}

.ic-footer-social a {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ic-footer-social a:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Saver account page */
.ic-saver-hero,
.ic-saver-offer,
.ic-saver-split {
    background: #f4f6f8;
}

.ic-saver-hero {
    padding: 104px 0 44px;
}

.ic-saver-offer,
.ic-saver-split {
    padding: 24px 0 42px;
}

.ic-saver-banking {
    padding: 18px 0 34px;
}

.ic-saver-goals {
    padding-bottom: 94px;
}

.ic-saver-shell {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.ic-saver-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: clamp(420px, 56vw, 680px);
    display: flex;
    align-items: center;
    padding: clamp(28px, 6vw, 84px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
    isolation: isolate;
}

.ic-saver-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/save-goal-real.jpg");
    background-size: cover;
    background-position: center right;
    transform: scale(1.01);
    z-index: -2;
}

.ic-saver-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 11, 23, 0.86) 0%, rgba(7, 11, 23, 0.74) 34%, rgba(7, 11, 23, 0.33) 58%, rgba(7, 11, 23, 0.08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.11) 100%);
    z-index: -1;
}

.ic-saver-content {
    max-width: 560px;
    color: #ffffff;
}

.ic-saver-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(250, 252, 255, 0.9);
}

.ic-saver-content h1 {
    margin: 0;
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.ic-saver-content p {
    margin: 22px 0 0;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.45;
    color: rgba(240, 245, 255, 0.95);
    max-width: 34ch;
}

.ic-saver-btn {
    margin-top: 28px;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid #0c64dc;
    background: #0b66d0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.ic-saver-btn:hover {
    background: #0a58b6;
    border-color: #0a58b6;
    color: #ffffff;
    transform: translateY(-1px);
}

.ic-saver-offer-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 20px;
    background: #e8ebef;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.ic-saver-offer-copy {
    padding: clamp(24px, 4vw, 44px);
}

.ic-saver-offer-copy h2 {
    margin: 0;
    color: #141c2f;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.ic-saver-offer-copy p {
    margin: 16px 0 0;
    color: #354258;
    font-size: 16px;
    line-height: 1.62;
}

.ic-saver-legal {
    color: #5d6880 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.ic-saver-link-btn {
    margin-top: 20px;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #0c64dc;
    background: #ffffff;
    color: #0c64dc;
    font-size: 15px;
    font-weight: 800;
}

.ic-saver-link-btn:hover {
    background: #e9f2ff;
    color: #0b58b8;
    border-color: #0b58b8;
}

.ic-saver-offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ic-saver-banking-head h2 {
    margin: 0;
    color: #141c2f;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.ic-saver-banking-head p {
    margin: 12px 0 0;
    color: #445169;
    font-size: 17px;
    line-height: 1.62;
    max-width: 78ch;
}

.ic-saver-banking-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ic-saver-banking-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #f9fbff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ic-saver-banking-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #e6f2ff;
    color: #0c64dc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.ic-saver-banking-card h3 {
    margin: 0 0 10px;
    color: #172035;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.ic-saver-banking-card p {
    margin: 0;
    color: #374459;
    font-size: 16px;
    line-height: 1.62;
}

.ic-saver-banking-card .ic-saver-legal {
    margin-top: 12px;
}

.ic-saver-banking-card .ic-saver-link-btn {
    margin-top: auto;
    width: fit-content;
}

.ic-saver-split-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(34px, 6vw, 88px);
}

.ic-saver-split-alt .ic-saver-split-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.ic-saver-split-copy h2 {
    margin: 0;
    color: #151d31;
    font-size: clamp(34px, 4.1vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 14ch;
}

.ic-saver-split-copy p {
    margin: 18px 0 0;
    color: #364258;
    font-size: 18px;
    line-height: 1.66;
    max-width: 56ch;
}

.ic-saver-illustration-card {
    max-width: 440px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    padding: 34px 28px;
    text-align: center;
}

.ic-saver-illustration-icon {
    width: min(260px, 100%);
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
}

.ic-saver-illustration-icon img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
}

.ic-saver-illustration-card h3 {
    margin: 0 0 8px;
    color: #182135;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ic-saver-illustration-card p {
    margin: 0;
    color: #58647a;
    font-size: 16px;
    line-height: 1.58;
}

.ic-saver-photo-card {
    border-radius: 24px;
    overflow: hidden;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.ic-saver-photo-card img {
    width: 100%;
    display: block;
}

.ic-saver-phone-card {
    width: min(320px, 100%);
    margin: 0 auto;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
    padding: 14px;
}

.ic-saver-phone-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d3a52;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 4px 10px;
}

.ic-saver-phone-head strong {
    font-weight: 800;
    color: #1a2438;
}

.ic-saver-phone-body {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 16px 14px;
}

.ic-saver-phone-label {
    margin: 0;
    color: #4e5b72;
    font-size: 13px;
    font-weight: 700;
}

.ic-saver-phone-amount {
    display: block;
    margin-top: 8px;
    color: #1a2439;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ic-saver-phone-meta {
    margin: 14px 0 0;
    color: #3f4c64;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ic-saver-phone-progress {
    margin-top: 10px;
    height: 8px;
    border-radius: 999px;
    background: #d8e5ff;
    overflow: hidden;
}

.ic-saver-phone-progress span {
    display: block;
    width: 36%;
    height: 100%;
    background: linear-gradient(90deg, #0c64dc, #2f87ff);
}

.ic-saver-phone-body small {
    display: block;
    margin-top: 10px;
    color: #6b7690;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 1199px) {
    .ic-saver-shell {
        width: calc(100% - 34px);
    }

    .ic-saver-banner {
        min-height: 540px;
        padding: 34px;
    }

    .ic-saver-offer-card,
    .ic-saver-split-shell,
    .ic-saver-split-alt .ic-saver-split-shell {
        grid-template-columns: 1fr;
    }

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

    .ic-saver-offer-media {
        min-height: 260px;
    }

    .ic-saver-split-shell {
        gap: 30px;
    }

    .ic-saver-split-copy h2,
    .ic-saver-split-copy p {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .ic-saver-hero {
        padding: 82px 0 34px;
    }

    .ic-saver-offer,
    .ic-saver-split {
        padding: 16px 0 30px;
    }

    .ic-saver-banking {
        padding: 8px 0 24px;
    }

    .ic-saver-goals {
        padding-bottom: 64px;
    }

    .ic-saver-shell {
        width: calc(100% - 22px);
    }

    .ic-saver-banner {
        border-radius: 20px;
        min-height: 500px;
        padding: 24px 20px;
    }

    .ic-saver-banner::after {
        background:
            linear-gradient(180deg, rgba(7, 11, 23, 0.76) 0%, rgba(7, 11, 23, 0.56) 44%, rgba(7, 11, 23, 0.4) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 100%);
    }

    .ic-saver-content {
        max-width: 100%;
    }

    .ic-saver-content h1 {
        font-size: clamp(34px, 10.4vw, 48px);
    }

    .ic-saver-content p {
        margin-top: 16px;
        font-size: 17px;
    }

    .ic-saver-btn {
        margin-top: 20px;
        width: 100%;
        max-width: 320px;
        font-size: 16px;
    }

    .ic-saver-offer-card,
    .ic-saver-illustration-card,
    .ic-saver-photo-card,
    .ic-saver-phone-card {
        border-radius: 16px;
    }

    .ic-saver-offer-copy {
        padding: 20px 16px;
    }

    .ic-saver-offer-copy h2 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .ic-saver-banking-head h2 {
        font-size: clamp(28px, 8.2vw, 40px);
    }

    .ic-saver-banking-head p {
        font-size: 15px;
    }

    .ic-saver-banking-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ic-saver-banking-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .ic-saver-banking-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .ic-saver-banking-card h3 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .ic-saver-split-copy h2 {
        font-size: clamp(30px, 8.6vw, 42px);
    }

    .ic-saver-split-copy p {
        font-size: 16px;
    }

    .ic-saver-link-btn,
    .ic-saver-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .ic-saver-shell {
        width: calc(100% - 16px);
    }

    .ic-saver-banner {
        min-height: 440px;
        border-radius: 16px;
        padding: 18px;
    }

    .ic-saver-phone-amount {
        font-size: 34px;
    }

    .ic-saver-banking-card .ic-saver-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Credit card page */
.ic-cc-hero,
.ic-cc-intro,
.ic-cc-perks,
.ic-cc-example,
.ic-cc-travel,
.ic-cc-compare {
    background: #f4f6f8;
}

.ic-cc-hero {
    padding: 104px 0 34px;
}

.ic-cc-intro,
.ic-cc-perks,
.ic-cc-example,
.ic-cc-travel,
.ic-cc-compare {
    padding: 22px 0 42px;
}

.ic-cc-compare {
    padding-bottom: 88px;
}

.ic-cc-shell {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.ic-cc-banner {
    position: relative;
    min-height: clamp(420px, 55vw, 640px);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(28px, 5.5vw, 74px);
    isolation: isolate;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.ic-cc-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bank-support.jpg") center right / cover no-repeat;
    z-index: -2;
}

.ic-cc-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 27, 0.84) 0%, rgba(10, 14, 27, 0.62) 35%, rgba(10, 14, 27, 0.16) 64%, rgba(10, 14, 27, 0.06) 100%);
    z-index: -1;
}

.ic-cc-hero-copy {
    max-width: 560px;
    color: #ffffff;
}

.ic-cc-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
}

.ic-cc-hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.03em;
}

.ic-cc-hero-copy p {
    margin: 18px 0 0;
    color: rgba(242, 247, 255, 0.94);
    font-size: clamp(18px, 1.4vw, 23px);
    line-height: 1.45;
}

.ic-cc-btn {
    margin-top: 26px;
    height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    border: 1px solid #bb1c1c;
    background: #bb1c1c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.ic-cc-btn:hover {
    background: #9f1717;
    border-color: #9f1717;
    color: #ffffff;
}

.ic-cc-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(34px, 5vw, 84px);
}

.ic-cc-card-stack {
    position: relative;
    min-height: 390px;
}

.ic-cc-card {
    position: absolute;
    width: min(350px, 100%);
    border-radius: 24px;
    background: linear-gradient(140deg, #1061c5 0%, #67b6e8 100%);
    box-shadow: 0 14px 34px rgba(16, 43, 94, 0.24);
    color: #eaf3ff;
    padding: 20px 22px;
}

.ic-cc-card-top {
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(-38deg);
    height: 248px;
}

.ic-cc-card-bottom {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(-22deg);
    height: 228px;
}

.ic-cc-card-brand,
.ic-cc-card-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-cc-card-type {
    float: right;
    opacity: 0.8;
}

.ic-cc-card strong {
    display: block;
    margin-top: 108px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.ic-cc-card small {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(236, 244, 255, 0.92);
}

.ic-cc-intro-copy h2 {
    margin: 0;
    color: #131c2f;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 16ch;
}

.ic-cc-intro-copy p {
    margin: 16px 0 0;
    color: #364258;
    font-size: 19px;
    line-height: 1.65;
    max-width: 54ch;
}

.ic-cc-legal {
    color: #5d6880 !important;
    font-size: 13px !important;
    line-height: 1.58 !important;
}

.ic-cc-perks-head h2,
.ic-cc-compare-head h2 {
    margin: 0;
    color: #151d31;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.ic-cc-perks-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ic-cc-perk-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f9fbff;
    padding: 24px 20px;
}

.ic-cc-perk-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #e5f0ff;
    color: #1265cf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 16px;
}

.ic-cc-perk-card h3 {
    margin: 0 0 10px;
    color: #172035;
    font-size: clamp(22px, 2.1vw, 35px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ic-cc-perk-card p {
    margin: 0;
    color: #39465a;
    font-size: 16px;
    line-height: 1.62;
}

.ic-cc-example-box {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
    gap: 22px;
    border-radius: 20px;
    background: #ddeaf8;
    padding: clamp(18px, 3vw, 30px);
}

.ic-cc-example-card {
    border-radius: 18px;
    min-height: 200px;
    background: linear-gradient(145deg, #1160c2 0%, #67b7ea 100%);
    box-shadow: 0 14px 26px rgba(23, 69, 144, 0.24);
    color: #e9f4ff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ic-cc-example-card span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ic-cc-example-card strong {
    font-size: 30px;
    line-height: 1.1;
}

.ic-cc-example-card small {
    font-size: 14px;
}

.ic-cc-example-copy h3 {
    margin: 0 0 16px;
    color: #1a2439;
    font-size: clamp(30px, 3.2vw, 46px);
    letter-spacing: -0.03em;
}

.ic-cc-example-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.ic-cc-example-grid div {
    display: grid;
    gap: 6px;
}

.ic-cc-example-grid span {
    color: #44536c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-cc-example-grid strong {
    color: #152035;
    font-size: 24px;
    line-height: 1.2;
}

.ic-cc-travel-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.ic-cc-travel-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.ic-cc-travel-note {
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: min(420px, calc(100% - 40px));
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
    padding: 22px;
}

.ic-cc-travel-note h3 {
    margin: 0 0 10px;
    color: #1b2439;
    font-size: clamp(30px, 2.8vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.ic-cc-travel-note p {
    margin: 0;
    color: #364258;
    font-size: 17px;
    line-height: 1.62;
}

.ic-cc-compare-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ic-cc-compare-card {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #f9fbff;
    padding: 18px 18px 16px;
}

.ic-cc-compare-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.2);
}

.ic-cc-mini-card {
    width: 132px;
    height: 84px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1262c9 0%, #62b4e8 100%);
    color: #e9f4ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ic-cc-mini-card-dark {
    background: linear-gradient(145deg, #1c2f8f 0%, #2b45b8 100%);
}

.ic-cc-compare-top h3 {
    margin: 0;
    color: #172035;
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ic-cc-check-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.ic-cc-check-list li {
    padding-left: 34px;
    position: relative;
    display: grid;
    gap: 4px;
}

.ic-cc-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #0f64cf;
    font-size: 28px;
    line-height: 1;
}

.ic-cc-check-list strong {
    color: #1a2438;
    font-size: 32px;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.ic-cc-check-list span {
    color: #39465b;
    font-size: 16px;
    line-height: 1.58;
}

@media (max-width: 1199px) {
    .ic-cc-shell {
        width: calc(100% - 34px);
    }

    .ic-cc-intro-shell,
    .ic-cc-example-box,
    .ic-cc-compare-grid {
        grid-template-columns: 1fr;
    }

    .ic-cc-card-stack {
        min-height: 350px;
    }

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

@media (max-width: 991px) {
    .ic-cc-hero {
        padding: 82px 0 24px;
    }

    .ic-cc-intro,
    .ic-cc-perks,
    .ic-cc-example,
    .ic-cc-travel,
    .ic-cc-compare {
        padding: 14px 0 28px;
    }

    .ic-cc-compare {
        padding-bottom: 64px;
    }

    .ic-cc-shell {
        width: calc(100% - 22px);
    }

    .ic-cc-banner {
        min-height: 500px;
        border-radius: 20px;
        padding: 24px 18px;
    }

    .ic-cc-banner::after {
        background: linear-gradient(180deg, rgba(10, 14, 27, 0.76) 0%, rgba(10, 14, 27, 0.56) 44%, rgba(10, 14, 27, 0.35) 100%);
    }

    .ic-cc-hero-copy {
        max-width: 100%;
    }

    .ic-cc-hero-copy h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .ic-cc-hero-copy p {
        font-size: 17px;
    }

    .ic-cc-btn {
        width: 100%;
        max-width: 290px;
    }

    .ic-cc-card-stack {
        min-height: 300px;
    }

    .ic-cc-card {
        width: min(290px, 100%);
        border-radius: 16px;
        padding: 14px 16px;
    }

    .ic-cc-card strong {
        margin-top: 92px;
        font-size: 26px;
    }

    .ic-cc-card small {
        font-size: 13px;
    }

    .ic-cc-intro-copy h2,
    .ic-cc-perks-head h2,
    .ic-cc-compare-head h2,
    .ic-cc-travel-note h3 {
        font-size: clamp(30px, 8.6vw, 42px);
    }

    .ic-cc-intro-copy p,
    .ic-cc-perk-card p,
    .ic-cc-travel-note p {
        font-size: 16px;
    }

    .ic-cc-perks-grid {
        grid-template-columns: 1fr;
    }

    .ic-cc-perk-card,
    .ic-cc-example-box,
    .ic-cc-compare-card,
    .ic-cc-travel-media,
    .ic-cc-travel-note {
        border-radius: 14px;
    }

    .ic-cc-example-grid {
        grid-template-columns: 1fr;
    }

    .ic-cc-travel-media img {
        min-height: 360px;
    }

    .ic-cc-travel-note {
        position: static;
        width: 100%;
        margin-top: 0;
        border-radius: 0 0 14px 14px;
    }

    .ic-cc-compare-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ic-cc-check-list strong {
        font-size: clamp(24px, 7vw, 30px);
    }
}

@media (max-width: 575px) {
    .ic-cc-shell {
        width: calc(100% - 16px);
    }

    .ic-cc-banner {
        min-height: 440px;
        border-radius: 16px;
        padding: 18px;
    }

    .ic-cc-card-stack {
        min-height: 250px;
    }

    .ic-cc-card {
        width: 240px;
    }

    .ic-cc-card strong {
        font-size: 22px;
    }

    .ic-cc-mini-card {
        width: 114px;
        height: 72px;
        border-radius: 10px;
    }
}
