/* ==========================================================================
   CRM-EDPO — pages.css
   Style specyficzne dla pojedynczych podstron
   ========================================================================== */

/* ============================================================
   INDEX — HERO SECTION
   ============================================================ */
.hero-creative {
    position: relative;
    padding: 160px 0 140px;
    min-height: 850px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(1, 138, 128, 0.05) 0%, transparent 50%);
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: var(--brand-light);
    border-radius: 120px;
    transform: rotate(-10deg);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-visual-wrapper {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 55vw;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.main-screen {
    border-radius: 40px 0 0 40px;
    box-shadow: -30px 50px 100px rgba(10, 37, 64, 0.15);
    border: 10px solid white;
    border-right: none;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    /*width: 100%;*/
    height: auto;
    transition: transform 0.6s ease;
}

.main-screen:hover {
    /*transform: perspective(1200px) rotateY(-12deg);*/
}

.modules-stack {
    position: absolute;
    right: 170px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
    align-items: flex-end;
}

/* ============================================================
   INDEX — AI SECTION
   ============================================================ */
.optymalizacja-container {
    background: var(--brand-dark);
    border-radius: 50px;
    padding: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.optymalizacja-container .text-primary {
    color: var(--brand-morski) !important;
}

.spec-tab {
    background: white;
    border-radius: 30px;
    padding: 40px;
}

/* ============================================================
   INDEX — CTA BOX
   ============================================================ */
.cta-box {
    background: linear-gradient(135deg, var(--brand-morski), var(--brand-dark));
    border-radius: 50px;
    padding: 40px;
    color: white;
}

/* ============================================================
   FUNKCJONALNOSCI — HERO
   ============================================================ */
.hero-section {
    padding: 160px 0 80px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(1, 138, 128, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 138, 128, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   CENNIK — HERO + ELEMENTS
   ============================================================ */
.pricing-hero {
    padding: 160px 0 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(1, 138, 128, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 138, 128, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 90%);
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 90%);
    pointer-events: none;
}

.main-pricing-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.07);
    margin-bottom: 40px;
    text-align: left;
}

.estimate-box {
    border: 2px dashed #cbd5e1;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
}

.enterprise-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 2px solid var(--brand-morski);
    text-align: center;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.07);
}

.enterprise-card:hover {
    transform: translateY(-10px);
}

.enterprise-card .price-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--brand-dark);
}

.enterprise-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.enterprise-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.enterprise-list li i {
    color: var(--brand-morski);
    font-size: 1.2rem;
}

.cta-banner {
    background: var(--brand-dark);
    border-radius: 30px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    text-align: center;
}

.cta-banner::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: var(--brand-morski);
    opacity: 0.2;
    border-radius: 50%;
}

/* ============================================================
   KONTAKT — HERO + FORM + MAP
   ============================================================ */
.contact-hero {
    padding: 160px 0 40px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(1, 138, 128, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 138, 128, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 40px 100px rgba(10, 37, 64, 0.1);
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 450px;
}

.accordion-button{
    padding: 20px !important;
}
