/* ============================================================
   Central Europe LP — central-europe.css
   Same design language as amd.css. New structural vocabulary.
   ============================================================ */


/* ===================================================
   HERO
   ===================================================

.ce-hero {
    position: relative;
    min-height: 70vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ce-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ce-hero-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ce-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.22);
    z-index: 1;
    pointer-events: none;
}

.ce-hero-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ce-hero-inner {
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

.ce-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ce-hero-h1 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 0 24px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.ce-h1-line {
    display: block;
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    font-family: Poppins, sans-serif;
}

.ce-h1-filled {
    color: #fff;
}

.ce-h1-outline {
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(255,255,255,.7);
    letter-spacing: 1px;
}

.ce-hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 16px;
}

.ce-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ce-hero-actions .btn-1 {
    margin: 0 !important;
}

.ce-hero-actions .anti-btn {
    margin: 0 !important;
    color: rgba(255,255,255,.8) !important;
    border-color: rgba(255,255,255,.25) !important;
    background: transparent !important;
}

.ce-hero-actions .anti-btn:hover {
    border-color: rgba(255,255,255,.7) !important;
    color: #fff !important;
}

.ce-hero-proof {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ce-proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .3px;
    backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
    .ce-hero-inner { padding: 80px 0 60px; }
    .ce-hero-actions { flex-direction: column; align-items: center; }
    .ce-h1-outline { -webkit-text-stroke: 1.5px rgba(255,255,255,.7); }
}
 
 */
 
/********************************** Hero Area ************************************/

.hero-area {
    margin: 0;
    max-width: 100%;
    gap: 0.1rem;
    align-items: center;
}

.right {
    margin-top: 0 !important;
}

.hero-head {
    background: #F36E45;
    border-radius: 5px;
    padding: 2px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.right h2 {
    color: #000;
    font-size: 70px;
    margin-top: 12px;
    margin-bottom: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
}

.ce-h2-gradient {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 30%, #e879f9 70%, #c93d12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ce-hero-sub {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 0 28px;
    padding: 0;
}

/* CTA row */
.ce-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

/* Primary button — reuse btn-1 but ensure correct sizing */
.hero-btn-primary {
    font-size: 16px !important;
    padding: 14px 26px !important;
    margin: 0 !important;
}

/* Outline button */
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 13px 22px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    transition: border-color .2s, color .2s;
    white-space: nowrap;
}

.hero-btn-outline:hover {
    border-color: #F36E45;
    color: #F36E45;
}

/* Responsive */
@media (max-width: 768px) {
    .ce-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ce-hero-sub {
        font-size: 15px;
    }
}

.right p {
    font-size: 17px;
    color: #000;
    padding-bottom: 0;
}

.hero-features {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    max-width: 600px;
    display: block;
    margin: 10px 0;
}

.hero-features li {
    margin-bottom: 8px;
}

.hero-features li:last-child {
    margin-bottom: 0;
}

.hero-features li i {
    color: #F36E45;
    margin-right: 10px;
}

.hero-price {
    margin-top: 15px;
}

.hero-price span:first-child {
    font-size: 15px;
    color: #000;
}

.hero-price span:last-child {
    font-size: 40px;
    color: #000;
    font-weight: 700;
}

.hero-price span:last-child sup {
    font-size: 50%;
    vertical-align: super;
    margin-right: 2px;
    font-weight: 400;
}

.hero-price span:last-child span {
    font-size: 40%;
    font-weight: 400;
}

.hero-btn {
    background: #F36E45;
    box-shadow: none !important;
    margin: 10px 0 0 0;
    border-radius: 10px;
    min-width: auto;
    font-size: 16px;
    padding: 15px 17px;
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

.hero-btn:hover {
    transform: translate(0px, -1px) scale(1.01);
    cursor: pointer;
}

/* ---- Right column ---- */
.ds-back {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: auto;
}

.ce-photo-circle {
    position: relative;
    width: clamp(160px, 20vw, 200px);
    height: clamp(160px, 20vw, 200px);
    flex-shrink: 0;
    transform: translateY(-20px);
}

.ce-circle-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #fff1ed 100%);
}

.ce-circle-ring {
    position: absolute;
    top: clamp(40px, 5vw, 70px);
    right: clamp(120px, 18vw, 280px);
    width: clamp(140px, 22vw, 300px);
    height: clamp(200px, 33vw, 450px);
    border-radius: 50%;
    border: clamp(12px, 1.8vw, 30px) solid transparent;
    border-bottom-color: #ffccbc;
    border-right-color: #ffccbc;
    transform: rotate(-250deg);
}

.ce-photo-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    object-position: top;
    border-radius: 0;
    transform: translateY(-50px);
}

/* ---- Floating cards ---- */
.ce-float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.09);
    padding: clamp(10px, 1.5vw, 20px);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    white-space: normal;
    width: clamp(260px, 35vw, 500px);
}

.ce-fc-label {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 700;
    color: #777;
    line-height: 1.1;
}

.ce-fc-sub {
    font-size: clamp(10px, 0.85vw, 13px);
    color: #777;
    font-weight: 500;
    line-height: 1.5;
}

.ce-fc-icon {
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    border-radius: 8px;
    background: #f3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a795ed;
    font-size: clamp(12px, 1.2vw, 15px);
    flex-shrink: 0;
}

/* Card positions using % instead of fixed px */
.ce-fc-1 { top: clamp(280px, 22vw, 290px); right: clamp(30px, 5vw, 70px); }
.ce-fc-2 { bottom: 30px; right: 0; }
.ce-fc-3 { top: 50%; left: 0; transform: translateY(-50%); }

/* ---- Language switcher ---- */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: #F36E45;
    background: #fff5f1;
}

.lang-chevron {
    transition: transform 0.2s ease;
}

.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    bottom: unset;
    top: calc(100% + 8px);
    left: 0;
    width: 450px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    z-index: 999;
    animation: langFadeIn 0.15s ease;

    /* 2 columns */
    grid-template-columns: 1fr 1fr;
}

.lang-switcher.open .lang-dropdown {
    display: grid;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    font-size: 13.5px;
    transition: background 0.15s;
}

.lang-option:hover {
    background: #fff5f1;
}

.lang-option.active {
    background: #fff1eb;
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-name {
    font-weight: 600;
    flex: 1;
}

.lang-native {
    font-size: 11px;
    color: #aaa;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .right h2 { font-size: 50px; }

    .ce-circle-ring {
        right: clamp(80px, 10vw, 180px);
        width: clamp(120px, 18vw, 220px);
        height: clamp(180px, 28vw, 340px);
    }

    .ce-float-card {
        width: clamp(220px, 30vw, 380px);
    }
}

@media (max-width: 768px) {
    .right h2 { font-size: 40px; }

    .hero-area div:first-child { padding-right: 0; }

    .ds-back {
        margin-top: 20px;
    }

    /* Ring scales down with the column */
    .ce-circle-ring {
        top: 40px;
        right: 80px;
        width: 140px;
        height: 210px;
        border-width: 14px;
    }

    .ce-float-card {
        width: min(90vw, 380px);
        padding: 12px 14px;
    }

    .ce-fc-1 { top: 260px; right: 10px; }
    .ce-fc-2 { bottom: 10px; right: 0; }

    .server-right { text-align: right; }
    .server-right p,
    .server-right .buttons { text-align: right; }
    .location-grid span { font-size: 9px !important; }
}

@media (max-width: 480px) {
    .right h2 { font-size: 33px; }

    .ds-back {
        height: auto;
        min-height: 360px;
        margin-top: 30px;
    }

    .ce-photo-circle {
        width: 200px;
        height: 200px;
    }

    .ce-circle-ring {
        top: 30px;
        right: 50px;
        width: 110px;
        height: 170px;
        border-width: 10px;
    }

    .ce-photo-img {
        width: 180px;
        height: auto;
    }

    .ce-float-card {
        width: min(92vw, 320px);
        padding: 8px 10px;
    }

    .ce-fc-1 { top: 10px; right: 0; }
    .ce-fc-2 { bottom: 10px; right: 0; }
    .ce-fc-3 { left: 0; }
}

/* ===================================================
   HOSTING PLANS — editorial layout
   =================================================== */

.ce-plans-section {
    padding: 90px 0 60px;
    background: #fff;
}

.ce-plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.ce-plans-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.ce-plans-header p {
    font-size: 18px;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0;
}

/* Two-up top row */
.ce-plans-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
    align-items: start;
}

.ce-plan-feature,
.ce-plan-secondary {
    position: relative;
}

.ce-plan-wrap {
    border-radius: 30px;
    height: 100%;
}

/* "Most Popular" ribbon */
.ce-plan-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F36E45;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 22px;
    border-radius: 20px;
    letter-spacing: .8px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(243,110,69,.4);
}

/* Value-prop line inside card */
.ce-plan-value {
    background: #f8f9fb;
    border-left: 3px solid #F36E45;
    margin: 12px 20px 16px;
    padding: 11px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}

.ce-plan-value strong {
    color: #333;
}

/* Enterprise (full-width dedicated) card */
.ce-plan-enterprise {
    border: solid #0A2463;
    border-radius: 30px;
    padding: 20px;
    background: #fff;
    margin-bottom: 0 !important;
}

/* Dedicated visual placeholder (replaces hardware image) */
.ce-dedicated-visual {
    background: linear-gradient(135deg, #0a1628 0%, #0A2463 100%);
    border-radius: 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
}

.ce-server-icon {
    font-size: 64px;
    color: rgba(255,255,255,.7);
}

.ce-dedicated-label {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.ce-dedicated-sub {
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

/* Footer CTA under plans */
.ce-plans-footer {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #faf9f7;
    border-radius: 20px;
}

.ce-plans-footer p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    padding: 0;
}

.ce-plans-footer strong {
    color: #333;
}


/* ===================================================
   WHY SECTION — numbered editorial rows
   =================================================== */

.ce-why-section {
    background: #faf9f7;
    padding: 120px 0;
}

.ce-why-header {
    text-align: center;
    margin-bottom: 70px;
}

.ce-why-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #F36E45;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.ce-why-header h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
}

/* Each benefit row */
.ce-benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ce-benefit-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 30px;
    align-items: center;
    padding: 36px 40px;
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    transition: background .2s;
}

.ce-benefit-row:first-child {
    border-radius: 20px 20px 0 0;
}

.ce-benefit-row:last-child {
    border-radius: 0 0 20px 20px;
    border-bottom: none;
}

.ce-benefit-row:hover {
    background: #fffaf8;
}

.ce-benefit-alt {
    background: #fdfcfb;
}

.ce-benefit-alt:hover {
    background: #faf7f5;
}

/* Big number */
.ce-benefit-num {
    font-size: 46px;
    font-weight: 900;
    color: #F36E45;
    font-family: Poppins, sans-serif;
    line-height: 1;
    opacity: .9;
}

/* Content */
.ce-benefit-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ce-benefit-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 0;
    margin: 0;
    max-width: 680px;
}

/* Right icon */
.ce-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: .5;
}

/* ===================================================
   MEET PATRYK — light clean two-column
   =================================================== */

.ce-patryk-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Wrap + split */
.ce-patryk-wrap {
    position: relative;
    z-index: 2;
    padding: 60px 10px;
    border: 1px solid #efefef;
    border-radius: 40px;
}

.ce-patryk-split {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 0 auto;
    justify-content: center;
}

/* ---- LEFT column ---- */
.ce-patryk-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

/* Avatar */
.ce-patryk-avatar {
    position: relative;
    width: 200px;
    height: 200px;
}

.ce-avatar-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}

.ce-avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(243,110,69,.25);
    animation: ce-ring-expand 3s ease-in-out infinite;
}

.ce-avatar-ring-2 {
    inset: -18px;
    border-color: rgba(243,110,69,.12);
    animation-delay: 1.5s;
}

@keyframes ce-ring-expand {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.05); opacity: .5; }
}

/* Contact buttons */
.ce-p-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ce-p-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    white-space: nowrap;
    transition: all .2s;
}

.ce-p-contact a:hover {
    background: #fff5f2;
    border-color: #F36E45;
    color: #F36E45;
}

.ce-p-contact a i {
    color: #F36E45;
    font-size: 14px;
    flex-shrink: 0;
}

/* ---- RIGHT column ---- */
.ce-patryk-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
}

.ce-patryk-headline {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    font-family: Poppins, sans-serif;
    margin: 0;
    line-height: 1.1;
}

.ce-namecard-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #F36E45;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}

.ce-story-p {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .ce-patryk-split {
        flex-direction: column;
        text-align: center;
    }

    .ce-patryk-right {
        align-items: center;
    }
}

/* ===================================================
   FINAL CTA
   =================================================== */

#ce-final-cta {
    background-image: url('../img/infra_hero.png');
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

#ce-final-cta .swiper-slide-1 {
    min-height: 500px;
}


/* ===================================================
   CONTACT FORM — with Patryk avatar header
   =================================================== */

#ce-contact {
    margin-top: 80px;
}

.ce-form-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.ce-form-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #F36E45, #c9471e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    font-family: Poppins, sans-serif;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(243,110,69,.35);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #f36e45;
    border-color: #f36e45;
}

.checkbox-label input[type="checkbox"]::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0px;
    width: 4px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked::after {
    display: block;
    animation: checkPop 0.2s ease forwards;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    color: #444;
}

.checkbox-label:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.checkbox-label:has(input:checked) {
    background: #efefef;
    border-color: #efefef;
    color: #1a1a1a;
    font-weight: 500;
}

@keyframes checkPop {
    0%   { transform: rotate(45deg) scale(0.5); opacity: 0; }
    60%  { transform: rotate(45deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(45deg) scale(1);   opacity: 1; }
}

.report-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.top-form {
    grid-column: 1;
    grid-row: 1;
}

.top-form .flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-form .flex .input-field {
    width: 100% !important;
}

/* unwrap bottom-form so its children join the form grid directly */
.bottom-form {
    display: contents;
}

.checkbox-group {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 50px 40px 20px 40px;
}

/* textarea, captcha, submit drop below spanning full width */
.input-field.col-12,
.input-field.col-2 {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .report-form {
        grid-template-columns: 1fr;
    }
    .checkbox-group {
        grid-column: 1;
        grid-row: auto;
    }
}

.top-form::before {
    content: "Your Information";
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #777;
    margin-bottom: 10px;
}

.checkbox-group::before {
    content: "Services of Interest";
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #777;
    margin-bottom: 10px;
}


/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1200px) {
    .ce-hero-h1 { font-size: 48px }
    .ce-patryk-split { grid-template-columns: 300px 1fr; gap: 60px }
}

@media (max-width: 1000px) {
    .ce-hero { grid-template-columns: 1fr; max-height: none; min-height: auto }
    .ce-hero-right { display: none }
    .ce-hero-inner { padding: 80px 30px }
    .ce-hero-h1 { font-size: 44px }

    .ce-plans-top { grid-template-columns: 1fr }
    .ce-plan-feature, .ce-plan-secondary { max-width: 600px; margin: 0 auto }

    .ce-patryk-split { grid-template-columns: 1fr; gap: 50px }
    .ce-patryk-identity { max-width: 420px; margin: 0 auto }

    .ce-benefit-row { grid-template-columns: 60px 1fr 0; padding: 28px 24px }
    .ce-benefit-icon { display: none }
    .ce-benefit-num { font-size: 38px }
}

@media (max-width: 768px) {
    .ce-hero-h1 { font-size: 38px }
    .ce-hero-inner { padding: 60px 20px }

    .ce-stats-bar { padding: 16px 20px; gap: 6px }
    .ce-stat-item { padding: 0 18px }
    .ce-stat-item strong { font-size: 20px }
    .ce-stat-sep { height: 28px }

    .ce-plans-header h2 { font-size: 36px }
    .ce-why-header h2 { font-size: 34px }

    .ce-patryk-mega-bg { font-size: 80px; opacity: 1 }
    .ce-patryk-split { grid-template-columns: 1fr }
    .ce-patryk-quote { font-size: 15px }
    .ce-story-ctas { flex-direction: column; align-items: flex-start }

    .ce-form-header { flex-direction: column; text-align: center; align-items: center }
    .ce-form-header h2 { text-align: center !important }
    .ce-form-header p { text-align: center !important }

    .ce-benefit-row { padding: 22px 20px }
    .ce-benefit-body h3 { font-size: 17px }
}

@media (max-width: 576px) {
    .ce-hero-h1 { font-size: 32px; letter-spacing: 0 }
    .ce-hero-sub { font-size: 16px }
    .ce-hero-actions { flex-direction: column; align-items: stretch }
    .ce-hero-actions .btn-1,
    .ce-hero-actions .anti-btn { text-align: center; width: 100%; display: block }

    .ce-stats-bar { flex-direction: column; gap: 12px; padding: 24px }
    .ce-stat-sep { width: 60px; height: 1px }

    .ce-p-stats { grid-template-columns: 1fr 1fr }
    .ce-p-stats .ce-p-stat:last-child { grid-column: span 2 }

    .ce-plans-header h2 { font-size: 30px }
    .ce-why-header h2 { font-size: 28px }

    .ce-benefit-row { grid-template-columns: 48px 1fr; gap: 16px }
    .ce-benefit-num { font-size: 30px }
}
