/* ======================================================
   ELIV DIGITAL
   Main Stylesheet
====================================================== */


/* ======================================================
   01. RESET
====================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ======================================================
   02. VARIABLES
====================================================== */
:root {
    /* Colors */
    --primary: #2d1b4e;
    --secondary: #8b5cf6;
    --secondary-dark: #6c4cff;
    --gold: #ffd343;
    --white: #ffffff;
    --bg: #f6f7fb;
    --bg-soft: #faf9ff;
    --text: #2d3748;
    --muted: #6b7280;
    /* Borders */
    --border-light: rgba(139, 92, 246, .08);
    --border-medium: rgba(139, 92, 246, .18);
    /* Shadows */
    --shadow-sm:
        0 8px 24px rgba(35, 35, 60, .06);
    --shadow-md:
        0 12px 30px rgba(35, 35, 60, .08);
    --shadow-lg:
        0 20px 45px rgba(35, 35, 60, .10);
    --shadow-purple:
        0 18px 40px rgba(108, 76, 255, .14);
    /* Radius */
    --radius-sm: 14px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-pill: 999px;
    /* Layout */
    --max: 1180px;
    /* Animation */
    --transition: .3s ease;
}

/* ======================================================
   03. BASE
====================================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ======================================================
   LAYOUT
====================================================== */
.container {
    width: 92%;
    max-width: var(--max);
    margin: 0 auto;
}

/* ======================================================
   MEDIA
====================================================== */
img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

/* ======================================================
   LINKS
====================================================== */
a {
    color: inherit;
    text-decoration: none;
}

/* ======================================================
   LISTS
====================================================== */
ul {
    list-style: none;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
h1,
h2,
h3,
h4 {
    color: var(--primary);
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.3;
}

p {
    line-height: 1.7;
}

/* ======================================================
   04. BUTTONS
====================================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

/* PRIMARY */
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(108, 76, 255, .18);
}

/* SECONDARY */
.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* OUTLINE */
.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(108, 76, 255, .14);
}

/* ======================================================
   05. NAVBAR
====================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom:
        1px solid rgba(45, 27, 78, .08);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 24px;
}

/* LOGO */
.logo {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: .3px;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    position: relative;
    color: var(--text);
    font-size: .95rem;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

/* jemná linka pod navigací */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 70%;
}

/* NAVBAR BUTTON */
.navbar .btn-primary {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 20px;
    font-size: .92rem;
}

/* ======================================================
   NAVBAR RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        margin: 8px 0;
    }
}


@media (max-width: 600px) {
    .nav-container {
        gap: 12px;
    }

    .nav-links {
        gap: 12px 16px;
    }

    .nav-links a {
        font-size: .9rem;
    }
}

/* ======================================================
   SHARED DECORATIVE BACKGROUND
====================================================== */
/*
   Společný vizuální styl pro hlavní sekce:
   - zlatá záře vlevo
   - fialová záře vpravo
   - jemné barevné přechody

   Použití:
   <section class="page-section decorative-section">
*/

.decorative-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(255, 211, 67, .22),
            transparent 27%
        ),

        radial-gradient(
            circle at 95% 12%,
            rgba(139, 92, 246, .18),
            transparent 32%
        ),

        radial-gradient(
            circle at 88% 85%,
            rgba(196, 181, 253, .13),
            transparent 28%
        ),

        linear-gradient(
            180deg,
            #fffefd 0%,
            #faf9ff 55%,
            #f7f6fc 100%
        );
}


/* obsah musí být nad dekoracemi */
.decorative-section > .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   BACKGROUND GLOW
====================================================== */
.decorative-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -300px;
    top: -280px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 211, 67, .25),
            rgba(255, 211, 67, .08) 45%,
            transparent 72%
        );
    filter: blur(70px);
    pointer-events: none;
}


.decorative-section::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    right: -320px;
    top: -300px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .22),
            rgba(139, 92, 246, .07) 45%,
            transparent 72%
        );
    filter: blur(80px);
    pointer-events: none;
}

/* ======================================================
   06. GLOBAL SECTIONS
====================================================== */
section {
    padding: 70px 0;
}

/*
   Základní obsahová sekce.

   POZOR:
   .page-section už NESMÍ obsahovat specifický gradient
   právních stránek.

   Ten později přesuneme pod .legal-page.
*/

.page-section {
    position: relative;
    padding: 80px 0;
}

/* ======================================================
   SECTION HEADER
====================================================== */
.section-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

/* TAG NAD NADPISEM */
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background:
        rgba(139, 92, 246, .10);
    color: var(--secondary);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .3px;
}

/* SECTION TITLE */
.section-header h2,
.section-title {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
}

/* SECTION DESCRIPTION */
.section-header p,
.section-text {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* ======================================================
   07. GLOBAL CARDS
====================================================== */
.card {
    position: relative;
    background:
        rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:
        1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color:
        var(--border-medium);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    margin: 18px 0 14px;
    color: var(--primary);
    font-size: 1.35rem;
}

.card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ======================================================
   SERVICES
====================================================== */
.services-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

/* SERVICE CARD */
.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background:
        rgba(255, 255, 255, .88);
    border:
        1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow:
        0 12px 30px rgba(35, 35, 60, .06);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

/* jemná dekorace v rohu */
.service-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -90px;
    right: -90px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .12),
            transparent 70%
        );
    pointer-events: none;
    transition: transform .4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color:
        var(--border-medium);
    box-shadow:
        0 22px 48px rgba(35, 35, 60, .10);
}

.service-card:hover::before {
    transform: scale(1.25);
}

/* ======================================================
   SERVICE ICON
====================================================== */
.service-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 16px;
    background:
        rgba(139, 92, 246, .09);
    border:
        1px solid rgba(139, 92, 246, .08);
    transition:
        background var(--transition),
        transform var(--transition);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-dark);
    stroke-width: 2;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    background:
        rgba(139, 92, 246, .14);
    transform: translateY(-2px);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

/* ======================================================
   SERVICE TEXT
====================================================== */
.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.75;
}

/* ======================================================
   SERVICES RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .service-card {
        padding: 28px;
    }
}

/* ======================================================
   08. GLOBAL GRIDS
====================================================== */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    align-items: stretch;
}

.grid-2 {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.grid-3 {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.grid-4 {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* ======================================================
   09. SHARED PILL / TAG COMPONENT
====================================================== */
/*
   Toto bude společný základ například pro:
   - About tagy
   - Hero benefity
   - podobné malé pill komponenty
   Specifické komponenty si později přidají pouze
   vlastní margin / layout.
*/
.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background:
        rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:
        1px solid var(--border-light);
    box-shadow:
        0 10px 24px rgba(35, 35, 60, .06);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.tag:hover {
    transform: translateY(-3px);
    border-color:
        var(--border-medium);
    box-shadow:
        0 18px 34px rgba(35, 35, 60, .10);
}

.tag svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--secondary-dark);
    stroke-width: 2;
}

.tag span {
    color: #3e3a56;
    font-weight: 600;
}

/* ======================================================
   10. SHARED DECORATIONS
====================================================== */
.wave {
    position: absolute;
    border:
        2px solid rgba(139, 92, 246, .12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.wave-1 {
    width: 950px;
    height: 330px;
    right: -250px;
    bottom: -210px;
    transform: rotate(-8deg);
}

.wave-2 {
    width: 720px;
    height: 260px;
    left: -320px;
    top: 170px;
    transform: rotate(16deg);
    border-color:
        rgba(255, 211, 67, .14);
    opacity: .7;
}

/* ======================================================
   DECORATIVE SPARKLES
====================================================== */
.sparkle {
    position: absolute;
    z-index: 1;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
    opacity: .85;
}

.sparkle-1 {
    top: 145px;
    left: 15%;
}

.sparkle-2 {
    right: 12%;
    bottom: 150px;
    font-size: 18px;
}

/* ======================================================
   11. TECHNOLOGY / PROJECT BADGES
====================================================== */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 24px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: #f4efff;
    color: var(--secondary-dark);
    font-size: .82rem;
    font-weight: 600;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.tech-badge:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ======================================================
   12. GLOBAL RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    section,
    .page-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    .section-header h2,
    .section-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }
}

/* ======================================================
   ABOUT HERO
====================================================== */
.about-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 64px);
    padding: 90px 0 100px;
}

/* ======================================================
   ABOUT GRID
====================================================== */
.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(300px, 390px)
        minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}

/* ======================================================
   ABOUT PHOTO
====================================================== */
.about-photo {
    position: relative;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
}

/* jemná fialová záře za fotkou */
.about-photo::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: 0;
    border-radius: 40px;
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .16),
            transparent 72%
        );
    filter: blur(40px);
    pointer-events: none;
}

/* zlaté tečky */
.about-photo::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 105px;
    height: 105px;
    left: -38px;
    top: 55px;
    background-image:
        radial-gradient(
            var(--gold) 2px,
            transparent 2px
        );
    background-size: 18px 18px;
    opacity: .35;
    pointer-events: none;
}

.about-photo img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    border:
        7px solid rgba(255, 255, 255, .95);
    outline:
        1px solid rgba(139, 92, 246, .10);
    outline-offset: 8px;
    box-shadow:
        0 28px 65px rgba(35, 35, 60, .14);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-photo:hover img {
    transform:
        translateY(-6px)
        scale(1.01);
    box-shadow:
        0 36px 80px rgba(35, 35, 60, .18);
}

/* ======================================================
   PHOTO BADGE
====================================================== */
.photo-badge {
    position: absolute;
    z-index: 3;
    left: 22px;
    bottom: -20px;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    background:
        rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border:
        1px solid rgba(255, 255, 255, .80);
    color: var(--secondary-dark);
    font-size: .9rem;
    font-weight: 700;
    box-shadow:
        0 12px 28px rgba(35, 35, 60, .10);
}

/* ======================================================
   ABOUT CONTENT
====================================================== */
.about-content {
    position: relative;
    max-width: 720px;
}

.about-content h1 {
    margin: 18px 0 24px;
    color: var(--primary);
    font-size:
        clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.about-lead {
    max-width: 680px;
    margin-bottom: 32px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-lead strong {
    color: var(--primary);
    font-weight: 700;
}

/* ======================================================
   ABOUT BUTTONS
====================================================== */
.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.about-buttons .btn-primary {
    box-shadow:
        0 12px 28px rgba(108, 76, 255, .20);
}

/* ======================================================
   ABOUT TAGS
====================================================== */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/*
   Samotný vzhled .tag už máme definovaný
   ve SHARED PILL / TAG COMPONENT.
*/
.about-tags .tag {
    padding: 11px 16px;
}

.about-tags .tag svg {
    width: 17px;
    height: 17px;
}

/* ======================================================
   ABOUT DECORATION POSITIONS
====================================================== */
/*
   Používáme společné .wave a .sparkle,
   měníme pouze jejich pozici pro About.
*/
.about-hero .wave-1 {
    width: 900px;
    height: 300px;
    right: -200px;
    bottom: -190px;
    border-color:
        rgba(139, 92, 246, .13);
}

.about-hero .wave-2 {
    width: 680px;
    height: 230px;
    left: -270px;
    top: 120px;
    border-color:
        rgba(255, 211, 67, .14);
}

.about-hero .sparkle-1 {
    top: 120px;
    left: 44%;
}

.about-hero .sparkle-2 {
    right: 10%;
    bottom: 140px;
}

/* ======================================================
   ABOUT APPROACH - BACKGROUND
====================================================== */
section.about-approach {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 0 120px;
    background:
        /* jemná fialová záře vpravo nahoře */
        radial-gradient(
            circle at 95% 15%,
            rgba(139, 92, 246, 0.18) 0%,
            rgba(139, 92, 246, 0.07) 25%,
            transparent 46%
        ),

        /* teplá zlatá záře vlevo dole */
        radial-gradient(
            circle at 5% 85%,
            rgba(235, 181, 55, 0.18) 0%,
            rgba(235, 181, 55, 0.07) 24%,
            transparent 44%
        ),

        /* velmi jemná levandulová uprostřed dole */
        radial-gradient(
            circle at 60% 110%,
            rgba(167, 139, 250, 0.10) 0%,
            transparent 38%
        ),

        linear-gradient(
            135deg,
            #fffaf1 0%,
            #fbfaff 48%,
            #f3edff 100%
        );
}

/* obsah nad dekoracemi */
section.about-approach > .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   JEMNÁ ZLATÁ LINKA
====================================================== */
section.about-approach::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 230px;
    left: -410px;
    bottom: 40px;
    border:
        1px solid rgba(218, 165, 55, 0.14);
    border-radius: 50%;
    transform: rotate(-9deg);
    pointer-events: none;
    z-index: 0;
}


/* ======================================================
   JEMNÁ FIALOVÁ LINKA
====================================================== */
section.about-approach::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 220px;
    right: -400px;
    top: 80px;
    border:
        1px solid rgba(139, 92, 246, 0.14);
    border-radius: 50%;
    transform: rotate(9deg);
    pointer-events: none;
    z-index: 0;
}

/* ======================================================
   ABOUT RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .about-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        text-align: center;
    }

    .about-photo {
        max-width: 340px;
    }

    .about-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .about-buttons,
    .about-tags {
        justify-content: center;
    }
}


@media (max-width: 576px) {
    .about-hero {
        padding: 65px 0 75px;
    }

    .about-grid {
        gap: 60px;
    }

    .about-photo {
        max-width: 290px;
    }

    .photo-badge {
        left: 50%;
        bottom: -18px;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .about-content h1 {
        font-size: 2.35rem;
    }

    .about-lead {
        font-size: 1rem;
    }
}

/* ======================================================
   PORTFOLIO HERO
====================================================== */
.portfolio-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 100px 0 110px;
}

/* ======================================================
   CONTENT
====================================================== */
.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.portfolio-hero h1 {
    max-width: 800px;
    margin: 20px 0 22px;
    color: var(--primary);
    font-size:
        clamp(3rem, 5.2vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.portfolio-hero-lead {
    max-width: 760px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ======================================================
   BENEFITS
====================================================== */
.portfolio-hero .hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0 30px;
}

/*
   Vzhled samotného .tag už máme
   ve společném SHARED PILL COMPONENT.
*/
.portfolio-hero .hero-benefits .tag {
    padding: 12px 18px;
}

.portfolio-hero .hero-benefits .tag svg {
    width: 18px;
    height: 18px;
}

/* ======================================================
   BUTTONS
====================================================== */
.portfolio-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
}

.portfolio-hero .hero-buttons .btn-primary {
    box-shadow:
        0 14px 30px rgba(108, 76, 255, .20);
}

/* ======================================================
   PORTFOLIO DECORATIONS
====================================================== */
/* zlatá vlna vlevo */
.portfolio-hero .wave-2 {
    width: 720px;
    height: 260px;
    left: -300px;
    top: 150px;
    border-color:
        rgba(255, 211, 67, .18);
    transform: rotate(16deg);
}

/* fialová vlna vpravo dole */
.portfolio-hero .wave-1 {
    width: 950px;
    height: 330px;
    right: -230px;
    bottom: -210px;
    border-color:
        rgba(139, 92, 246, .14);
    transform: rotate(-8deg);
}


/* hvězdička nahoře */
.portfolio-hero .sparkle-1 {
    top: 145px;
    left: 57%;
    font-size: 22px;
}

/* hvězdička vpravo dole */
.portfolio-hero .sparkle-2 {
    right: 12%;
    bottom: 130px;
    font-size: 18px;
}

/* ======================================================
   PORTFOLIO HERO RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .portfolio-hero {
        min-height: auto;
        padding: 80px 0 90px;
    }
    .portfolio-hero-content {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 65px 0 75px;
    }

    .portfolio-hero h1 {
        font-size: 2.7rem;
    }

    .portfolio-hero-lead {
        font-size: 1rem;
    }

    .portfolio-hero .hero-benefits {
        margin: 28px 0;
    }
}

@media (max-width: 576px) {
    .portfolio-hero h1 {
        font-size: 2.25rem;
    }

    .portfolio-hero h1 br {
        display: none;
    }

    .portfolio-hero .hero-buttons {
        flex-direction: column;
    }
}

/* ======================================================
   PORTFOLIO HOME - BACKGROUND
====================================================== */
.portfolio-section.portfolio-home {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(238, 185, 62, 0.16) 0%,
            rgba(238, 185, 62, 0.06) 22%,
            transparent 40%
        ),

        radial-gradient(
            circle at 0% 55%,
            rgba(139, 92, 246, 0.16) 0%,
            rgba(139, 92, 246, 0.07) 25%,
            transparent 45%
        ),

        radial-gradient(
            circle at 75% 100%,
            rgba(167, 139, 250, 0.13) 0%,
            transparent 38%
        ),

        linear-gradient(
            135deg,
            #f6f2ff 0%,
            #fbfaff 48%,
            #fffaf1 100%
        );
}

/* obsah nad dekoracemi */
.portfolio-home .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   PORTFOLIO - JEMNÉ DEKORACE
====================================================== */
.portfolio-home::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 230px;
    left: -400px;
    bottom: 40px;
    border:
        1px solid rgba(139, 92, 246, 0.12);
    border-radius: 50%;
    transform: rotate(-9deg);
    pointer-events: none;
    z-index: 0;
}

.portfolio-home::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 200px;
    right: -370px;
    top: 80px;
    border:
        1px solid rgba(218, 165, 55, 0.12);
    border-radius: 50%;
    transform: rotate(9deg);
    pointer-events: none;
    z-index: 0;
}

.portfolio-home .portfolio-card {
    background: rgba(255, 255, 255, 0.94);
    border:
        1px solid rgba(91, 65, 135, 0.09);
    box-shadow:
        0 20px 55px rgba(55, 35, 90, 0.08);
    backdrop-filter: blur(6px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-home .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 65px rgba(55, 35, 90, 0.13);
}

.portfolio-home .portfolio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 45px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background:
        linear-gradient(
            90deg,
            #e5b43c,
            #8b5cf6
        );
}

/* ======================================================
   PORTFOLIO SECTION
====================================================== */
.portfolio-section {
    position: relative;
    padding: 90px 0 110px;
    background: var(--white);
}

/* ======================================================
   PORTFOLIO GRID
====================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
    margin-top: 55px;
}

/* ======================================================
   PORTFOLIO CARD
====================================================== */
.portfolio-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background:
        rgba(255, 255, 255, .96);
    border:
        1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow:
        0 12px 32px rgba(35, 35, 60, .07);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color:
        var(--border-medium);
    box-shadow:
        0 24px 50px rgba(35, 35, 60, .11);
}

/* ======================================================
   PORTFOLIO IMAGE
====================================================== */
.portfolio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f5f3fa;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .45s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.025);
}

/* ======================================================
   PORTFOLIO CONTENT
====================================================== */
.portfolio-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 28px;
}

.project-type {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    background:
        rgba(139, 92, 246, .09);
    color: var(--secondary-dark);
    font-size: .8rem;
    font-weight: 700;
}


.project-type svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}


.portfolio-content h3 {
    margin: 0 0 13px;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1.35;
}

.project-description {
    margin: 0;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.75;
}

/* technologie */
.portfolio-content .project-tech {
    margin-top: 20px;
    margin-bottom: 24px;
}

/* tlačítko držíme dole */
.portfolio-content > .btn-primary {
    margin-top: auto;
}

.portfolio-content .btn-primary svg {
    width: 17px;
    height: 17px;
    margin-left: 7px;
}

/* ======================================================
   PORTFOLIO CTA CARD
====================================================== */
.portfolio-cta {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(139, 92, 246, .16),
            transparent 45%
        ),

        linear-gradient(
            145deg,
            #faf7ff 0%,
            #f2ebff 100%
        );

    border:
        1px solid rgba(139, 92, 246, .14);
}

.portfolio-cta .portfolio-content {
    justify-content: center;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 17px;
    background:
        rgba(139, 92, 246, .11);
    color: var(--secondary-dark);
}

.cta-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.portfolio-cta h3 {
    font-size: 1.45rem;
}

.portfolio-cta p {
    margin-bottom: 26px;
}

/* ======================================================
   PORTFOLIO RESPONSIVE
====================================================== */
@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 70px 0 80px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .portfolio-content {
        padding: 24px;
    }
}

/* ======================================================
   PROCESS
====================================================== */
.process-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
}

/* ======================================================
   PROCESS GRID / TIMELINE
====================================================== */
.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin-top: 65px;
}

/* spojovací linka */
.process-grid::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 8%;
    right: 8%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 211, 67, .35),
            rgba(139, 92, 246, .45),
            rgba(139, 92, 246, .20)
        );
    z-index: 0;
}

/* ======================================================
   PROCESS CARD
====================================================== */
.process-card {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
}

/* ======================================================
   PROCESS NUMBER
====================================================== */
.process-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--secondary-dark)
        );
    border:
        6px solid rgba(255, 255, 255, .95);
    outline:
        1px solid rgba(139, 92, 246, .12);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    box-shadow:
        0 10px 25px rgba(108, 76, 255, .22);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.process-card:hover .process-number {
    transform:
        translateY(-4px)
        scale(1.06);
    box-shadow:
        0 16px 32px rgba(108, 76, 255, .28);
}

/* ======================================================
   PROCESS TEXT
====================================================== */
.process-card h3 {
    margin: 0 0 13px;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.process-card p {
    margin: 0 auto;
    max-width: 220px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ======================================================
   PROCESS DECORATIONS
====================================================== */

.process-section .wave-1 {
    width: 850px;
    height: 300px;
    right: -300px;
    bottom: -220px;
    border-color:
        rgba(139, 92, 246, .12);
}

.process-section .sparkle-1 {
    top: 140px;
    left: 10%;
    color: var(--gold);
}

/* ======================================================
   PROCESS RESPONSIVE
====================================================== */
@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        row-gap: 50px;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 75px 0 85px;
    }

    .process-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 560px;
        margin:
            50px auto 0;
    }

    /* vertikální timeline */
    .process-grid::before {
        display: block;
        top: 28px;
        bottom: 28px;
        left: 27px;
        right: auto;
        width: 2px;
        height: auto;
        background:
            linear-gradient(
                180deg,
                rgba(255, 211, 67, .40),
                rgba(139, 92, 246, .45),
                rgba(139, 92, 246, .15)
            );
    }

    .process-card {
        display: grid;
        grid-template-columns:
            56px minmax(0, 1fr);
        column-gap: 22px;
        padding: 0 0 42px;
        text-align: left;
    }

    .process-card:last-child {
        padding-bottom: 0;
    }

    .process-number {
        grid-row: 1 / 3;
        margin: 0;
    }

    .process-card h3 {
        align-self: end;
        margin:
            3px 0 8px;
    }

    .process-card p {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .process-card {
        grid-template-columns:
            50px minmax(0, 1fr);
        column-gap: 17px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        border-width: 5px;
    }

    .process-grid::before {
        left: 24px;
    }
}

/* ======================================================
   CONTACT CTA
====================================================== */
.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(255, 211, 67, .14),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 70%,
            rgba(139, 92, 246, .12),
            transparent 32%
        ),
        #faf9ff;
}

/* ======================================================
   CTA BOX
====================================================== */
.contact-cta-box {
    position: relative;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    padding: 52px 60px;
    text-align: center;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(139, 92, 246, .15),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .96),
            rgba(248, 244, 255, .96)
        );
    border:
        1px solid rgba(139, 92, 246, .12);
    box-shadow:
        0 22px 55px rgba(35, 35, 60, .09);
}

/* jemná zlatá dekorace */
.contact-cta-box::before {
    content: "✦";
    position: absolute;
    top: 25px;
    left: 35px;
    color: var(--gold);
    font-size: 22px;
    opacity: .85;
}

/* jemná fialová záře */
.contact-cta-box::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -120px;
    bottom: -150px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .14),
            transparent 70%
        );
    pointer-events: none;
}

.contact-cta-box h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--primary);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
}

.contact-cta-box p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* BUTTONS */
.contact-cta-box .hero-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
}

/* ======================================================
   CTA RESPONSIVE
====================================================== */
@media (max-width: 768px) {
    .contact-cta {
        padding: 75px 0 85px;
    }

    .contact-cta-box {
        padding: 42px 30px;
    }
}

@media (max-width: 576px) {
    .contact-cta-box {
        padding: 38px 22px;
        border-radius: 24px;
    }

    .contact-cta-box .hero-buttons {
        flex-direction: column;
    }

    .contact-cta-box .hero-buttons a {
        width: 100%;
    }
}

/* ======================================================
   FOOTER
====================================================== */
.footer {
    position: relative;
    overflow: hidden;
    padding: 52px 0 0;
    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(255, 205, 90, .20) 0%,
            rgba(255, 205, 90, .08) 22%,
            transparent 43%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(139, 92, 246, .22) 0%,
            rgba(139, 92, 246, .09) 27%,
            transparent 48%
        ),
        linear-gradient(
            120deg,
            #fffaf2 0%,
            #faf8ff 45%,
            #f2edff 100%
        );
    border-top:
        1px solid rgba(139, 92, 246, .10);
    color: var(--muted);
}

/* jemná dekorativní linka nahoře */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 2px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139, 92, 246, .45),
            rgba(255, 211, 67, .45),
            transparent
        );
}

/* ======================================================
   FOOTER GRID
====================================================== */
.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        1.5fr .8fr 1fr 1.2fr;
    gap: 45px;
    align-items: start;
    padding-bottom: 42px;
}

/* ======================================================
   BRAND
====================================================== */
.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.footer-brand p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.7;
}

/* ======================================================
   COLUMNS
====================================================== */
.footer-column h4 {
    margin: 2px 0 14px;
    color: var(--primary);
    font-size: .88rem;
    font-weight: 700;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-column a {
    color: var(--muted);
    font-size: .85rem;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column ul a {
    display: inline-block;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-column ul a:hover {
    transform: translateX(2px);
}

/* ======================================================
   CONTACT
====================================================== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact > a,
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: .85rem;
}

.footer-contact > a:hover {
    color: var(--secondary);
}

.footer-contact svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--secondary);
}

/* ======================================================
   FOOTER BOTTOM
====================================================== */
.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top:
        1px solid rgba(45, 27, 78, .07);
    color: #9691a2;
    font-size: .76rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ======================================================
   HOME HERO
====================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 90px 0 105px;
    background:
        radial-gradient(
            circle at 4% 18%,
            rgba(255, 205, 90, .22),
            transparent 31%
        ),
        radial-gradient(
            circle at 94% 20%,
            rgba(139, 92, 246, .20),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #fffaf1 0%,
            #fcfbff 48%,
            #f3efff 100%
        );
}

/* ======================================================
   HERO GRID
====================================================== */
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);
    gap: 75px;
    align-items: center;
}

/* ======================================================
   HERO TEXT
====================================================== */
.hero-text {
    max-width: 780px;
}

.hero-skills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--secondary-dark);
    font-size: .9rem;
    font-weight: 600;
}

.hero-skill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-skill svg {
    width: 17px;
    height: 17px;
    color: var(--secondary);
}

.hero-dot {
    color: rgba(45, 27, 78, .35);
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 22px;
    color: var(--primary);
    font-size:
        clamp(3rem, 4.7vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.hero-description {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ======================================================
   HERO BUTTONS
====================================================== */
.hero .hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.hero .btn-primary {
    box-shadow:
        0 12px 28px rgba(108, 76, 255, .18);
}

/* ======================================================
   HERO IMAGE AREA
====================================================== */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 390px;
    justify-self: end;
    padding-bottom: 65px;
}

/* jemná záře za fotkou */
.hero-image::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -30px;
    left: -40px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .16),
            transparent 68%
        );
    filter: blur(25px);
    pointer-events: none;
}

/* ======================================================
   HERO PHOTO
====================================================== */
.hero-photo {
    position: relative;
    z-index: 2;
    width: 315px;
    margin-left: auto;
}

.hero-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    border:
        6px solid rgba(255, 255, 255, .88);
    outline:
        1px solid rgba(139, 92, 246, .10);
    outline-offset: 7px;
    box-shadow:
        0 25px 55px rgba(35, 35, 60, .13);
}

/* ======================================================
   HERO BENEFIT CARD
====================================================== */
.hero-card {
    position: absolute;
    z-index: 3;
    width: 285px;
    left: -45px;
    bottom: 0;
    padding: 20px 22px;
    border-radius: 20px;
    background:
        rgba(255, 255, 255, .91);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border:
        1px solid rgba(255, 255, 255, .90);
    box-shadow:
        0 18px 42px rgba(35, 35, 60, .11);
}

.hero-card h3 {
    margin: 0 0 13px;
    color: var(--primary);
    font-size: .95rem;
    font-weight: 700;
}

.hero-card ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hero-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #59546a;
    font-size: .82rem;
    line-height: 1.4;
}

.hero-card li svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--secondary);
}

/* ======================================================
   HERO DECORATIONS
====================================================== */
.hero-wave {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    pointer-events: none;
}

.hero-wave-left {
    width: 760px;
    height: 280px;
    left: -380px;
    top: 150px;
    border-color:
        rgba(226, 177, 67, .18);
    transform: rotate(15deg);
}

.hero-wave-right {
    width: 850px;
    height: 300px;
    right: -350px;
    bottom: -180px;
    border-color:
        rgba(139, 92, 246, .16);
    transform: rotate(-9deg);
}

.hero-sparkle {
    position: absolute;
    z-index: 1;
    color: var(--gold);
    pointer-events: none;
}

.hero-sparkle-1 {
    top: 120px;
    left: 48%;
    font-size: 20px;
}

.hero-sparkle-2 {
    right: 8%;
    bottom: 110px;
    font-size: 15px;
}

/* ======================================================
   HERO RESPONSIVE
====================================================== */
@media (max-width: 1050px) {
    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(280px, .9fr);
        gap: 50px;
    }

    .hero h1 {
        font-size:
            clamp(2.7rem, 5vw, 3.7rem);
    }

    .hero-photo {
        width: 290px;
    }

    .hero-card {
        width: 260px;
        left: -25px;
    }
}

@media (max-width: 850px) {
    .hero {
        padding: 75px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-image {
        justify-self: center;
        max-width: 380px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 75px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-skills {
        font-size: .8rem;
    }

    .hero-dot {
        display: none;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .hero-buttons a {
        width: 100%;
    }

    .hero-image {
        padding-bottom: 125px;
    }

    .hero-photo {
        width: min(280px, 90%);
        margin: 0 auto;
    }

    .hero-card {
        left: 50%;
        bottom: 0;
        width: min(280px, 90%);
        transform: translateX(-50%);
    }
}

/* ======================================================
   WHY ELIV - BACKGROUND
====================================================== */
.why-eliv {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        /* teplá zlatá záře vlevo */
        radial-gradient(
            circle at 0% 45%,
            rgba(245, 190, 65, 0.18) 0%,
            rgba(245, 190, 65, 0.08) 24%,
            transparent 45%
        ),

        /* fialová záře vpravo */
        radial-gradient(
            circle at 100% 35%,
            rgba(139, 92, 246, 0.18) 0%,
            rgba(139, 92, 246, 0.07) 25%,
            transparent 46%
        ),

        /* jemná levandulová dole */
        radial-gradient(
            circle at 55% 110%,
            rgba(167, 139, 250, 0.10),
            transparent 42%
        ),

        linear-gradient(
            120deg,
            #fffaf2 0%,
            #fcfbff 48%,
            #f4f0ff 100%
        );

    padding: 100px 0 120px;
}


/* obsah vždy nad pozadím */
.why-eliv .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   WHY GRID
====================================================== */
.why-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 55px;
}

/* ======================================================
   WHY CARD
====================================================== */
.why-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 22px;
    background:
        rgba(255, 255, 255, .78);
    border:
        1px solid rgba(139, 92, 246, .08);
    box-shadow:
        0 10px 30px rgba(35, 35, 60, .045);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(139, 92, 246, .16);
    box-shadow:
        0 20px 42px rgba(35, 35, 60, .08);
}

/* jemný detail nahoře */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--secondary)
        );
    opacity: .65;
}

/* ======================================================
   WHY ICONS
====================================================== */
.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 15px;
}

.why-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 2;
}

.why-icon-purple {
    color: var(--secondary);
    background:
        rgba(139, 92, 246, .09);
    border:
        1px solid rgba(139, 92, 246, .10);
}

.why-icon-gold {
    color: #c79528;
    background:
        rgba(255, 205, 90, .13);
    border:
        1px solid rgba(226, 177, 67, .12);
}

/* ======================================================
   WHY TEXT
====================================================== */
.why-card h3 {
    margin: 0 0 11px;
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* ======================================================
   WHY RESPONSIVE
====================================================== */
@media (max-width: 1050px) {
    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .why-eliv {
        padding: 70px 0 80px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .why-card {
        padding: 26px 24px;
    }
}

/* ======================================================
   PORTFOLIO HOME
====================================================== */
.portfolio-home {
    position: relative;
    overflow: hidden;
    padding: 90px 0 95px;
    background:
        radial-gradient(
            circle at 100% 10%,
            rgba(139, 92, 246, .07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fbfaff 0%,
            #ffffff 100%
        );
}

/* Na homepage chceme maximálně 3 projekty */
.portfolio-home .portfolio-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    margin-top: 50px;
}

/* ======================================================
   VIEW ALL
====================================================== */
.portfolio-home-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.portfolio-home-action .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-home-action svg {
    width: 17px;
    height: 17px;
    transition:
        transform var(--transition);
}

.portfolio-home-action .btn-outline:hover svg {
    transform: translateX(3px);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1050px) {
    .portfolio-home .portfolio-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .portfolio-home {
        padding: 70px 0 75px;
    }

    .portfolio-home .portfolio-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .portfolio-home-action {
        margin-top: 32px;
    }
}

/* ======================================================
   PRICING
====================================================== */
.pricing-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(255, 205, 90, .10),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 25%,
            rgba(139, 92, 246, .10),
            transparent 30%
        ),
        #fbfaff;
}

/* ======================================================
   PRICING GRID
====================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 55px auto 0;
    align-items: stretch;
}

/* ======================================================
   PRICING CARD
====================================================== */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 32px;
    border-radius: 24px;
    background:
        rgba(255, 255, 255, .88);
    border:
        1px solid rgba(139, 92, 246, .09);
    box-shadow:
        0 14px 38px rgba(35, 35, 60, .06);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 48px rgba(35, 35, 60, .09);
    border-color:
        rgba(139, 92, 246, .16);
}

/* ======================================================
   FEATURED
====================================================== */
.pricing-card.featured {
    border:
        1px solid rgba(139, 92, 246, .24);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .98),
            rgba(246, 242, 255, .92)
        );
    box-shadow:
        0 18px 45px rgba(108, 76, 255, .10);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 22px;
    padding: 6px 11px;
    border-radius: 999px;
    background:
        rgba(139, 92, 246, .09);
    color: var(--secondary);
    font-size: .68rem;
    font-weight: 700;
}

/* ======================================================
   ICON
====================================================== */
.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 15px;
    color: var(--secondary);
    background:
        rgba(139, 92, 246, .08);
    border:
        1px solid rgba(139, 92, 246, .10);
}

.pricing-icon svg {
    width: 22px;
    height: 22px;
}

/* ======================================================
   TEXT / PRICE
====================================================== */
.pricing-card h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.price span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* ======================================================
   PRICING LIST
====================================================== */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: .86rem;
}

.pricing-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--secondary);
}

/* tlačítko vždy dole */
.pricing-card > .btn-primary,
.pricing-card > .btn-outline {
    width: 100%;
    margin-top: auto;
    text-align: center;
}
/* ======================================================
   TESTIMONIALS
====================================================== */
.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(255, 205, 90, .11),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(139, 92, 246, .07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #ffffff 100%
        );
}

/* ======================================================
   GRID
====================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 55px auto 0;
}

/* ======================================================
   TESTIMONIAL CARD
====================================================== */
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px;
    border-radius: 22px;
    background:
        rgba(255, 255, 255, .82);
    border:
        1px solid rgba(45, 27, 78, .07);
    box-shadow:
        0 10px 30px rgba(35, 35, 60, .045);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(139, 92, 246, .13);
    box-shadow:
        0 20px 42px rgba(35, 35, 60, .075);
}

/* ======================================================
   QUOTE ICON
====================================================== */
.testimonial-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 13px;
    background:
        rgba(255, 205, 90, .12);
    color: #c79528;
}

.testimonial-quote svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.8;
}

/* ======================================================
   TEXT
====================================================== */
.testimonial-text {
    flex: 1;
    margin: 0 0 28px;
    color: #59546a;
    font-size: .93rem;
    line-height: 1.8;
    font-style: italic;
}

/* ======================================================
   AUTHOR
====================================================== */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top:
        1px solid rgba(45, 27, 78, .07);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, .14),
            rgba(255, 205, 90, .16)
        );
    color: var(--secondary-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.testimonial-author h3 {
    margin: 0 0 3px;
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: #9691a2;
    font-size: .76rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .testimonials-section {
        padding: 70px 0 80px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* ======================================================
   TECHNOLOGIES
====================================================== */
.technologies-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(255, 205, 90, .12),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 75%,
            rgba(139, 92, 246, .11),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #fffdf8 0%,
            #fbfaff 52%,
            #f5f1ff 100%
        );
}

/* ======================================================
   HEADER
====================================================== */
.technologies-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.technologies-header h2 {
    margin: 18px 0 14px;
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.technologies-header p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
}

/* ======================================================
   TECH CLOUD
====================================================== */
.tech-cloud {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    max-width: 1050px;
    margin: 48px auto 0;
}

/* ======================================================
   TECH TAG
====================================================== */
.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .82);
    border:
        1px solid rgba(139, 92, 246, .10);
    box-shadow:
        0 8px 22px rgba(35, 35, 60, .055);
    color: #4f4a61;
    font-size: .87rem;
    font-weight: 600;
    white-space: nowrap;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.tech-tag:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color:
        rgba(139, 92, 246, .22);
    box-shadow:
        0 14px 30px rgba(108, 76, 255, .10);
}

/* ======================================================
   ICONS
====================================================== */
.tech-tag svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--secondary);
    stroke-width: 2;
}

/* střídání jemné zlaté */
.tech-tag:nth-child(3n) svg {
    color: #c79528;
}

.tech-tag:nth-child(3n) {
    border-color:
        rgba(226, 177, 67, .13);
}

/* ======================================================
   DECORATIONS
====================================================== */
.tech-wave {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    pointer-events: none;
}

.tech-wave-1 {
    width: 650px;
    height: 240px;
    left: -340px;
    top: 100px;
    border-color:
        rgba(226, 177, 67, .16);
    transform: rotate(13deg);
}

.tech-wave-2 {
    width: 750px;
    height: 270px;
    right: -360px;
    bottom: -130px;
    border-color:
        rgba(139, 92, 246, .15);
    transform: rotate(-10deg);
}

/* ======================================================
   SPARKLES
====================================================== */
.tech-sparkle {
    position: absolute;
    color: var(--gold);
    pointer-events: none;
}

.tech-sparkle-1 {
    top: 90px;
    left: 10%;
    font-size: 16px;
}

.tech-sparkle-2 {
    right: 9%;
    bottom: 75px;
    font-size: 13px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 768px) {
    .technologies-section {
        padding: 70px 0 80px;
    }

    .tech-cloud {
        gap: 10px;
        margin-top: 38px;
    }

    .tech-tag {
        padding: 10px 15px;
        font-size: .82rem;
    }
}

@media (max-width: 480px) {
    .tech-cloud {
        justify-content: flex-start;
    }

    .tech-tag {
        flex-grow: 1;
        justify-content: center;
    }
}

/* ======================================================
   FAQ
====================================================== */
.faq-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 100% 20%,
            rgba(139, 92, 246, .07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9ff 100%
        );
}

/* ======================================================
   FAQ LIST
====================================================== */
.faq-list {
    max-width: 850px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ======================================================
   FAQ ITEM
====================================================== */
.faq-item {
    overflow: hidden;
    border-radius: 17px;
    background:
        rgba(255, 255, 255, .86);
    border:
        1px solid rgba(139, 92, 246, .09);
    box-shadow:
        0 7px 22px rgba(35, 35, 60, .035);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.faq-item:hover {
    border-color:
        rgba(139, 92, 246, .16);
}

.faq-item[open] {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #faf7ff
        );
    border-color:
        rgba(139, 92, 246, .18);
    box-shadow:
        0 12px 30px rgba(108, 76, 255, .06);
}

/* ======================================================
   SUMMARY
====================================================== */
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 23px;
    cursor: pointer;
    list-style: none;
    color: var(--primary);
    font-size: .95rem;
    font-weight: 700;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* ======================================================
   PLUS / MINUS
====================================================== */
.faq-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background:
        rgba(139, 92, 246, .08);
    transition:
        background var(--transition),
        transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--secondary);
    transform:
        translate(-50%, -50%);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.faq-toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.faq-item[open] .faq-toggle {
    background:
        rgba(139, 92, 246, .13);
    transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
    opacity: 0;
}

/* ======================================================
   ANSWER
====================================================== */
.faq-answer {
    padding:
        0 70px 21px 23px;
}

.faq-answer p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.75;
}

/* jemná linka při otevření */
.faq-item[open] .faq-answer::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-bottom: 15px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            rgba(139, 92, 246, .55)
        );
}

/* ======================================================
   FAQ SECTION - BACKGROUND
====================================================== */
section.faq-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 0 120px;
    background:
        /* jemná fialová záře vlevo nahoře */
        radial-gradient(
            circle at 5% 15%,
            rgba(139, 92, 246, 0.17) 0%,
            rgba(139, 92, 246, 0.07) 24%,
            transparent 44%
        ),
        /* teplá zlatá záře vpravo */
        radial-gradient(
            circle at 96% 55%,
            rgba(235, 181, 55, 0.18) 0%,
            rgba(235, 181, 55, 0.07) 25%,
            transparent 45%
        ),
        /* jemná levandulová dole */
        radial-gradient(
            circle at 35% 110%,
            rgba(167, 139, 250, 0.12) 0%,
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #f5f0ff 0%,
            #fbfaff 48%,
            #fff9ed 100%
        );
}

/* obsah nad dekoracemi */
section.faq-section > .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   FAQ - JEMNÁ FIALOVÁ VLNA
====================================================== */
section.faq-section::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 250px;
    left: -430px;
    top: 170px;
    border:
        1px solid rgba(139, 92, 246, 0.14);
    border-radius: 50%;
    transform: rotate(10deg);
    pointer-events: none;
    z-index: 0;
}

/* ======================================================
   FAQ - JEMNÁ ZLATÁ VLNA
====================================================== */
section.faq-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 230px;
    right: -400px;
    bottom: 80px;
    border:
        1px solid rgba(218, 165, 55, 0.14);
    border-radius: 50%;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 650px) {
    .faq-section {
        padding: 70px 0 80px;
    }
    .faq-list {
        margin-top: 40px;
    }

    .faq-item summary {
        padding: 18px;
        gap: 15px;
        font-size: .9rem;
    }

    .faq-answer {
        padding:
            0 55px 19px 18px;
    }
}

/* ======================================================
   CONTACT CTA
====================================================== */
.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 5% 50%,
            rgba(255, 205, 90, .18),
            transparent 32%
        ),
        radial-gradient(
            circle at 95% 30%,
            rgba(139, 92, 246, .18),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #fffaf1 0%,
            #faf8ff 50%,
            #f1ebff 100%
        );
}

/* ======================================================
   CTA BOX
====================================================== */
.contact-cta-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 52px;
    border-radius: 28px;
    background:
        rgba(255, 255, 255, .68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border:
        1px solid rgba(255, 255, 255, .85);
    box-shadow:
        0 18px 50px rgba(45, 27, 78, .07);
}

/* jemná barevná horní linka */
.contact-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 52px;
    width: 90px;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--secondary)
        );
}

/* ======================================================
   CONTENT
====================================================== */
.contact-cta-content {
    max-width: 650px;
}

.contact-cta-content h2 {
    margin: 18px 0 14px;
    color: var(--primary);
    font-size:
        clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.contact-cta-lead {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.75;
}

/* ======================================================
   SMALL NOTE
====================================================== */
.contact-cta-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
}

.contact-cta-note > svg {
    width: 36px;
    height: 36px;
    padding: 9px;
    flex: 0 0 36px;
    border-radius: 11px;
    color: var(--secondary);
    background:
        rgba(139, 92, 246, .08);
}

.contact-cta-note div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-cta-note strong {
    color: var(--primary);
    font-size: .84rem;
}

.contact-cta-note span {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.5;
}

/* ======================================================
   ACTIONS
====================================================== */
.contact-cta-action {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 205px;
}

.contact-cta-action a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-cta-action svg {
    width: 16px;
    height: 16px;
    transition:
        transform var(--transition);
}

.contact-cta-action .btn-primary:hover svg {
    transform: translateX(3px);
}

/* ======================================================
   DECORATIONS
====================================================== */
.contact-cta-wave {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta-wave-1 {
    width: 600px;
    height: 230px;
    left: -330px;
    bottom: -70px;
    border-color:
        rgba(226, 177, 67, .18);
    transform: rotate(12deg);
}

.contact-cta-wave-2 {
    width: 700px;
    height: 250px;
    right: -350px;
    top: -100px;
    border-color:
        rgba(139, 92, 246, .17);
    transform: rotate(-10deg);
}

.contact-cta-sparkle {
    position: absolute;
    color: var(--gold);
    pointer-events: none;
}

.contact-cta-sparkle-1 {
    top: 45px;
    left: 8%;
    font-size: 17px;
}

.contact-cta-sparkle-2 {
    right: 7%;
    bottom: 45px;
    font-size: 13px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 850px) {
    .contact-cta-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px;
    }

    .contact-cta-action {
        flex-direction: row;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .contact-cta {
        padding: 65px 0;
    }

    .contact-cta-box {
        padding: 34px 25px;
        border-radius: 22px;
    }

    .contact-cta-box::before {
        left: 25px;
    }

    .contact-cta-action {
        flex-direction: column;
    }
}
/* ======================================================
   CONTACT PAGE
====================================================== */
.contact-page {
    position: relative;
    overflow: hidden;
    padding: 75px 0 100px;
    background:
        radial-gradient(
            circle at 0% 20%,
            rgba(255, 205, 90, .11),
            transparent 28%
        ),
        radial-gradient(
            circle at 100% 65%,
            rgba(139, 92, 246, .10),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #fffdf9 0%,
            #faf9ff 55%,
            #f6f2ff 100%
        );
}

/* ======================================================
   HEADER
====================================================== */
.contact-page .section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-page .section-header h1 {
    margin: 18px 0 14px;
    color: var(--primary);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.contact-page .section-header p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
}

/* ======================================================
   GRID
====================================================== */
.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(280px, .75fr)
        minmax(0, 1.25fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: stretch;
}

/* ======================================================
   CONTACT CARD
====================================================== */
.contact-card {
    padding: 34px;
    border-radius: 24px;
    background:
        rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border:
        1px solid rgba(255, 255, 255, .9);
    box-shadow:
        0 15px 40px rgba(45, 27, 78, .06);
}

/* PERSON */
.contact-person {
    padding-bottom: 25px;
    border-bottom:
        1px solid rgba(45, 27, 78, .07);
}

.contact-person-label {
    display: block;
    margin-bottom: 9px;
    color: var(--secondary);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-person h2 {
    margin: 0 0 5px;
    color: var(--primary);
    font-size: 1.35rem;
}

.contact-person p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

/* ======================================================
   CONTACT ITEMS
====================================================== */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 27px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background:
        rgba(139, 92, 246, .08);
    color: var(--secondary);
}

.contact-icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.9;
}

.contact-item > div:last-child {
    min-width: 0;
}

.contact-item span {
    display: block;
    margin-bottom: 2px;
    color: #9993a5;
    font-size: .7rem;
    font-weight: 600;
}

.contact-item a,
.contact-item strong {
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--secondary);
}

/* ======================================================
   BUSINESS DATA
====================================================== */
.contact-business {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 20px;
    border-top:
        1px solid rgba(45, 27, 78, .07);
}

.contact-business div {
    padding: 12px 14px;
    border-radius: 12px;
    background:
        rgba(139, 92, 246, .035);
}

.contact-business span {
    display: block;
    margin-bottom: 3px;
    color: #9993a5;
    font-size: .67rem;
}

.contact-business strong {
    display: block;
    color: var(--primary);
    font-size: .76rem;
}

/* ======================================================
   CONTACT NOTE
====================================================== */
.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 22px;
    padding: 15px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 205, 90, .10),
            rgba(139, 92, 246, .06)
        );
}

.contact-note > svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 2px;
    color: #c79528;
}

.contact-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-size: .77rem;
}

.contact-note span {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.55;
}

/* ======================================================
   CONTACT FORM
====================================================== */
.contact-form {
    padding: 38px 42px;
    border-radius: 24px;
    background:
        rgba(255, 255, 255, .90);
    border:
        1px solid rgba(139, 92, 246, .07);
    box-shadow:
        0 18px 45px rgba(45, 27, 78, .065);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header > span {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-form-header h2 {
    margin: 0 0 9px;
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1.3;
}

.contact-form-header p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
}

/* ======================================================
   DJANGO FORM
====================================================== */
.contact-form form p {
    margin: 0 0 18px;
}

.contact-form form label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: .76rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 15px;
    border:
        1px solid rgba(45, 27, 78, .11);
    border-radius: 11px;
    outline: none;
    background: #fcfbff;
    color: var(--primary);
    font-family: inherit;
    font-size: .84rem;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.contact-form textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #ffffff;
    border-color:
        rgba(139, 92, 246, .45);
    box-shadow:
        0 0 0 3px rgba(139, 92, 246, .07);
}

/* ======================================================
   GDPR
====================================================== */
.contact-form .gdpr-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 5px 0 20px;
    color: #9993a5;
    font-size: .68rem;
    line-height: 1.55;
}

.gdpr-note svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 2px;
    color: var(--secondary);
}

/* ======================================================
   SUBMIT
====================================================== */
.contact-form button.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
}

.contact-form button svg {
    width: 15px;
    height: 15px;
    transition:
        transform var(--transition);
}

.contact-form button:hover svg {
    transform: translateX(3px);
}

/* ======================================================
   SUCCESS
====================================================== */
.success-box {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background:
        rgba(139, 92, 246, .09);
    color: var(--secondary);
}

.success-icon svg {
    width: 22px;
    height: 22px;
}

.success-box h2 {
    margin: 0 0 10px;
    color: var(--primary);
}

.success-box p {
    max-width: 400px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* ======================================================
   CONTACT PAGE BACKGROUND
====================================================== */
.contact-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0 110px;
    background:
        radial-gradient(
            circle at 0% 35%,
            rgba(255, 201, 72, 0.20) 0%,
            rgba(255, 201, 72, 0.08) 25%,
            transparent 45%
        ),
        radial-gradient(
            circle at 100% 42%,
            rgba(139, 92, 246, 0.22) 0%,
            rgba(139, 92, 246, 0.09) 28%,
            transparent 48%
        ),
        linear-gradient(
            120deg,
            #fffaf1 0%,
            #fbf9ff 48%,
            #f1ebff 100%
        );
}

/* obsah nad dekoracemi */
.contact-page .container {
    position: relative;
    z-index: 2;
}

/* ======================================================
   VLNY
====================================================== */
.contact-wave {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: transparent;
}

/* zlatá jemná vlna vlevo */
.contact-wave-1 {
    width: 650px;
    height: 250px;
    left: -390px;
    top: 300px;
    border: 1px solid rgba(218, 165, 55, 0.20);
    transform: rotate(10deg);
}

/* druhá linka uvnitř vlny */
.contact-wave-1::after {
    content: "";
    position: absolute;
    inset: 35px -40px -35px 40px;
    border:
        1px solid rgba(218, 165, 55, 0.08);
    border-radius: 50%;
}

/* fialová jemná vlna vpravo */
.contact-wave-2 {
    width: 720px;
    height: 240px;
    right: -420px;
    top: 430px;
    border:
        1px solid rgba(139, 92, 246, 0.18);
    transform: rotate(-10deg);
}

.contact-wave-2::after {
    content: "";
    position: absolute;
    inset: 30px 35px -30px -35px;
    border:
        1px solid rgba(139, 92, 246, 0.08);
    border-radius: 50%;
}

/* ======================================================
   ZLATÉ DETAILY
====================================================== */
.contact-sparkle {
    position: absolute;
    color: #e7b83f;
    pointer-events: none;
    z-index: 1;
}

.contact-sparkle-1 {
    top: 200px;
    left: 6%;
    font-size: 18px;
}

.contact-sparkle-2 {
    top: 620px;
    right: 7%;
    font-size: 15px;
}

/* ======================================================
   JEMNÁ ZÁŘE ZA KARTAMI
====================================================== */
.contact-grid {
    position: relative;
}

.contact-grid::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 300px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, 0.10),
            transparent 68%
        );
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}
/* ======================================================
   LEGAL PAGES – COOKIES / GDPR
====================================================== */
.legal-page{
    position:relative;
    overflow:hidden;
    padding:70px 0 100px;
    background:
        radial-gradient(
            ellipse at 0% 25%,
            rgba(244,190,70,.16),
            transparent 35%
        ),
        radial-gradient(
            ellipse at 100% 45%,
            rgba(139,92,246,.15),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #fffaf2 0%,
            #fdfbff 50%,
            #f6f1ff 100%
        );
}

.legal-page .container{
    position:relative;
    z-index:2;
}

/* ======================================================
   HEADER
====================================================== */
.legal-header{
    max-width:800px;
    margin:0 auto 55px;
    text-align:center;
}

.legal-header h1{
    margin:14px 0 18px;
    color:#30205c;
    font-size:clamp(2.4rem,4vw,3.5rem);
    line-height:1.1;
    letter-spacing:-.04em;
}

.legal-header p{
    max-width:680px;
    margin:0 auto;
    color:#777286;
    line-height:1.75;
}

/* ======================================================
   CONTENT CARD
====================================================== */
.legal-content{
    max-width:950px;
    margin:0 auto;
    padding:18px 42px;
    background:rgba(255,255,255,.90);
    border:
        1px solid rgba(139,92,246,.08);
    border-radius:28px;
    box-shadow:
        0 22px 60px rgba(47,32,92,.07);
}

/* ======================================================
   LEGAL BLOCK
====================================================== */
.legal-block{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:22px;
    padding:34px 0;
    border-bottom:
        1px solid rgba(48,32,92,.07);
}

.legal-block:last-child{
    border-bottom:0;
}

.legal-block h2{
    margin:2px 0 12px;
    color:#30205c;
    font-size:1.35rem;
}

.legal-block p{
    margin:0 0 12px;
    color:#756f82;
    line-height:1.75;
}

.legal-block p:last-child{
    margin-bottom:0;
}

/* ======================================================
   ICONS
====================================================== */
.legal-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#f3edff;
    color:#8b5cf6;
}

.legal-icon svg{
    width:21px;
    height:21px;
}

.legal-icon-gold{
    background:#fff7df;
    color:#d5a126;
}

/* ======================================================
   COOKIE TYPES
====================================================== */
.legal-cookie-grid{
    display:grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));
    gap:15px;
    margin-top:20px;
}

.legal-cookie-item{
    display:flex;
    gap:14px;
    padding:20px;
    border-radius:17px;
    background:
        linear-gradient(
            135deg,
            #faf8ff,
            #fffdf8
        );

    border:
        1px solid rgba(139,92,246,.07);
}

.legal-cookie-icon{
    width:37px;
    height:37px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:11px;
    background:#f1eaff;
    color:#8b5cf6;
}

.legal-cookie-icon svg{
    width:17px;
    height:17px;
}

.legal-cookie-item h3{
    margin:1px 0 7px;
    color:#3b2b61;
    font-size:.95rem;
}

.legal-cookie-item p{
    margin:0;
    font-size:.84rem;
    line-height:1.65;
}

/* ======================================================
   DECORATIONS
====================================================== */
.legal-wave{
    position:absolute;
    border:1px solid;
    border-radius:50%;
    pointer-events:none;
}

.legal-wave-gold{
    width:620px;
    height:230px;
    left:-390px;
    top:220px;
    border-color:
        rgba(226,177,67,.18);
    transform:rotate(12deg);
}

.legal-wave-purple{
    width:700px;
    height:250px;
    right:-430px;
    bottom:20px;
    border-color:
        rgba(139,92,246,.16);
    transform:rotate(-12deg);
}

.legal-sparkle{
    position:absolute;
    color:#efbd3e;
    pointer-events:none;
}

.legal-sparkle-1{
    left:7%;
    top:190px;
    font-size:16px;
}

.legal-sparkle-2{
    right:7%;
    bottom:100px;
    font-size:13px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:700px){
    .legal-page{
        padding:50px 0 70px;
    }

    .legal-header{
        margin-bottom:35px;
    }

    .legal-content{
        padding:8px 24px;
        border-radius:22px;
    }

    .legal-block{
        grid-template-columns:1fr;
        gap:14px;
        padding:28px 0;
    }

    .legal-cookie-grid{
        grid-template-columns:1fr;
    }
}

/* ======================================================
   LIST
====================================================== */
.legal-list{
    margin-top:16px;
    padding-left:22px;
}

.legal-list li{
    margin-bottom:10px;
    color:#756f82;
    line-height:1.7;
}

.legal-list li:last-child{
    margin-bottom:0;
}

.legal-contact{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-top:12px;
}

.legal-contact strong{
    color:var(--dark);
    font-weight:700;
}

.legal-contact span{
    display:block;
}

.contact-page .container{
    position:relative;
    z-index:3;
}

/* ======================================================
   VOP PAGE
====================================================== */
.vop-page{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:90px 0 110px;

    background:
        /* zlatá záře vlevo nahoře */
        radial-gradient(
            circle at 0% 12%,
            rgba(255, 201, 72, .22) 0,
            rgba(255, 201, 72, .10) 18%,
            transparent 38%
        ),

        /* fialová záře vpravo nahoře */
        radial-gradient(
            circle at 100% 20%,
            rgba(139, 92, 246, .22) 0,
            rgba(139, 92, 246, .10) 20%,
            transparent 42%
        ),

        /* jemná fialová dole vlevo */
        radial-gradient(
            circle at 12% 82%,
            rgba(167, 139, 250, .15) 0,
            transparent 32%
        ),

        /* teplá záře dole vpravo */
        radial-gradient(
            circle at 92% 88%,
            rgba(255, 211, 112, .16) 0,
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #f4f1fb 0%,
            #f8f6ff 45%,
            #f1edfb 100%
        );
}


/* ======================================================
   VELKÉ DEKORATIVNÍ KRUHY / VLNY
====================================================== */

.vop-page::before{
    content:"";

    position:absolute;

    width:650px;
    height:650px;

    left:-390px;
    top:180px;

    border:
        1px solid rgba(218, 165, 55, .22);

    border-radius:50%;

    box-shadow:
        70px 30px 0 0 rgba(255,255,255,0),
        70px 30px 0 1px rgba(218,165,55,.10),
        140px 70px 0 0 rgba(255,255,255,0),
        140px 70px 0 1px rgba(218,165,55,.06);

    pointer-events:none;

    z-index:-1;
}


.vop-page::after{
    content:"";

    position:absolute;

    width:760px;
    height:760px;

    right:-480px;
    top:380px;

    border:
        1px solid rgba(139,92,246,.22);

    border-radius:50%;

    box-shadow:
        -65px 50px 0 0 rgba(255,255,255,0),
        -65px 50px 0 1px rgba(139,92,246,.10),
        -130px 100px 0 0 rgba(255,255,255,0),
        -130px 100px 0 1px rgba(139,92,246,.06);

    pointer-events:none;

    z-index:-1;
}


/* HEADER */

.vop-page .legal-header{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    position:relative;
    z-index:2;
}

.vop-page .legal-header h1{
    margin:20px 0 14px;

    font-size:clamp(38px, 5vw, 58px);
    line-height:1.08;
    letter-spacing:-2px;

    color:var(--dark);
}

.vop-page .legal-header p{
    max-width:720px;
    margin:0 auto;

    font-size:17px;
    line-height:1.8;

    color:#777181;
}


/* HLAVNÍ KARTA */

.vop-content{
    position:relative;
    z-index:2;

    max-width:1050px;
    margin:0 auto;

    background:rgba(255,255,255,.88);

    border:1px solid rgba(139,92,246,.10);
    border-radius:30px;

    padding:20px 55px;

    box-shadow:
        0 25px 70px rgba(65,45,105,.08);
}


/* JEDNOTLIVÉ SEKCE */

.vop-block{
    display:grid;

    grid-template-columns:60px 1fr;
    gap:25px;

    padding:36px 0;

    border-bottom:
        1px solid rgba(46,31,82,.08);
}

.vop-block:last-child{
    border-bottom:none;
}


/* ČÍSLO */

.vop-number{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,.12),
            rgba(255,211,112,.13)
        );

    color:#8b5cf6;

    font-size:13px;
    font-weight:800;
}


/* TEXT */

.vop-text h2{
    margin:2px 0 12px;

    font-size:23px;
    line-height:1.3;

    color:var(--dark);
}

.vop-text p{
    margin:0 0 12px;

    font-size:15px;
    line-height:1.8;

    color:#716b7d;
}

.vop-text p:last-child{
    margin-bottom:0;
}


/* FIREMNÍ ÚDAJE */

.vop-company{
    display:flex;
    flex-direction:column;
    gap:6px;

    margin:15px 0 18px;
    padding:18px 20px;

    background:#f8f6ff;

    border-radius:15px;
}

.vop-company strong{
    color:var(--dark);
}

.vop-company span{
    font-size:14px;
    color:#716b7d;
}

.vop-company a{
    color:#7c4dff;
    text-decoration:none;
    font-weight:600;
}

.vop-company a:hover{
    text-decoration:underline;
}


/* MOBILE */

@media(max-width:768px){

    .vop-page{
        padding:65px 0 80px;
    }

    .vop-page .legal-header{
        margin-bottom:40px;
    }

    .vop-page .legal-header h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .vop-content{
        padding:10px 24px;
        border-radius:22px;
    }

    .vop-block{
        grid-template-columns:1fr;
        gap:14px;

        padding:30px 0;
    }

    .vop-number{
        width:44px;
        height:44px;
    }

    .vop-text h2{
        font-size:21px;
    }

}


/* ======================================================
   DEKORACE
====================================================== */

.contact-wave{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.contact-wave-1{
    width:420px;
    height:420px;

    left:-290px;
    top:80px;

    border:1px solid rgba(224,176,62,.22);
}

.contact-wave-2{
    width:560px;
    height:560px;

    right:-380px;
    bottom:-180px;

    border:1px solid rgba(139,92,246,.18);
}

.contact-sparkle{
    position:absolute;
    z-index:1;

    color:#efbd3e;
    font-size:17px;

    pointer-events:none;
}

.contact-sparkle-1{
    top:65px;
    left:4%;
}

.contact-sparkle-2{
    right:6%;
    bottom:110px;
}


/* ======================================================
   HEADER
====================================================== */

.contact-page .section-header{
    max-width:800px;
    margin:0 auto 55px;
    text-align:center;
}

.contact-page .section-header h1{
    max-width:760px;
    margin:14px auto 18px;

    font-size:clamp(2.5rem, 4vw, 3.7rem);
    line-height:1.08;
    letter-spacing:-.045em;

    color:#30205c;
}

.contact-page .section-header p{
    max-width:650px;
    margin:0 auto;

    color:#777286;
    line-height:1.7;
}


/* ======================================================
   GRID
====================================================== */

.contact-grid{
    display:grid;
    grid-template-columns:360px minmax(0, 1fr);
    gap:30px;

    max-width:1050px;
    margin:0 auto;

    align-items:stretch;
}


/* ======================================================
   SPOLEČNÝ VZHLED KARET
====================================================== */

.contact-card,
.contact-form{
    background:rgba(255,255,255,.92);

    border:1px solid rgba(139,92,246,.08);
    border-radius:26px;

    box-shadow:
        0 20px 55px rgba(47,32,92,.07);
}


/* ======================================================
   LEVÁ KONTAKTNÍ KARTA
====================================================== */

.contact-card{
    position:relative;
    padding:36px 32px;
}

.contact-card::before{
    content:"";
    position:absolute;

    top:0;
    left:32px;

    width:65px;
    height:3px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #efbd3e,
        #8b5cf6
    );
}


/* osoba */

.contact-person{
    padding-bottom:25px;

    border-bottom:1px solid rgba(48,32,92,.08);
}

.contact-person-label,
.contact-form-header > span{
    display:block;

    margin-bottom:10px;

    color:#8b5cf6;

    font-size:.76rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.contact-person h2{
    margin:0 0 5px;

    color:#30205c;

    font-size:1.45rem;
    line-height:1.25;
}

.contact-person p{
    margin:0;

    color:#827c8e;
    font-size:.9rem;
}


/* ======================================================
   KONTAKTNÍ POLOŽKY
====================================================== */

.contact-list{
    display:flex;
    flex-direction:column;
    gap:20px;

    padding:26px 0;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.contact-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:13px;

    background:#f5f0ff;

    color:#8b5cf6;
}

.contact-icon svg{
    width:19px;
    height:19px;
}

.contact-item > div:last-child{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.contact-item span{
    color:#9a94a6;

    font-size:.76rem;
    font-weight:600;
}

.contact-item a,
.contact-item strong{
    color:#3d315d;

    font-size:.88rem;
    font-weight:700;

    text-decoration:none;
}

.contact-item a{
    transition:.25s;
}

.contact-item a:hover{
    color:#8b5cf6;
}


/* ======================================================
   IČO + DPH
====================================================== */

.contact-business{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;

    padding-top:20px;

    border-top:1px solid rgba(48,32,92,.08);
}

.contact-business > div{
    padding:14px;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #faf8ff,
            #f7f3ff
        );
}

.contact-business span{
    display:block;

    margin-bottom:5px;

    color:#9b95a6;

    font-size:.72rem;
}

.contact-business strong{
    color:#3d315d;
    font-size:.82rem;
}


/* ======================================================
   KONZULTACE BOX
====================================================== */

.contact-note{
    display:flex;
    gap:13px;

    margin-top:20px;
    padding:17px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            rgba(255,248,228,.8),
            rgba(246,240,255,.9)
        );

    border:1px solid rgba(229,190,83,.10);
}

.contact-note > svg{
    width:19px;
    height:19px;

    flex-shrink:0;

    color:#c99419;
}

.contact-note div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.contact-note strong{
    color:#3d315d;
    font-size:.84rem;
}

.contact-note span{
    color:#8b8497;

    font-size:.75rem;
    line-height:1.5;
}


/* ======================================================
   FORMULÁŘ
====================================================== */

.contact-form{
    position:relative;

    padding:38px 40px;

    overflow:hidden;
}

.contact-form::before{
    content:"";
    position:absolute;

    width:200px;
    height:200px;

    right:-100px;
    top:-100px;

    border-radius:50%;

    background:rgba(139,92,246,.055);

    pointer-events:none;
}

.contact-form-header,
.contact-form form{
    position:relative;
    z-index:2;
}

.contact-form-header{
    margin-bottom:28px;
}

.contact-form-header h2{
    margin:0 0 8px;

    color:#30205c;

    font-size:1.55rem;
    line-height:1.25;
}

.contact-form-header p{
    margin:0;

    color:#847e90;
    font-size:.88rem;
    line-height:1.6;
}


/* ======================================================
   DJANGO FORM
====================================================== */

.contact-form form > p{
    margin:0 0 18px;
}

.contact-form label{
    display:block;

    margin-bottom:7px;

    color:#30205c;

    font-size:.82rem;
    font-weight:700;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    display:block;

    width:100%;

    padding:14px 16px;

    border:1px solid rgba(65,51,94,.13);
    border-radius:12px;

    background:#fcfbff;

    color:#3d315d;

    font:inherit;
    font-size:.88rem;

    outline:none;

    transition:
        border-color .25s,
        box-shadow .25s,
        background .25s;
}

.contact-form textarea{
    min-height:130px;
    resize:vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#aaa4b3;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    background:#fff;

    border-color:rgba(139,92,246,.5);

    box-shadow:
        0 0 0 4px rgba(139,92,246,.07);
}


/* ======================================================
   GDPR
====================================================== */

.contact-form .gdpr-note{
    display:flex;
    align-items:flex-start;
    gap:9px;

    margin:4px 0 20px;

    color:#a09aaa;

    font-size:.72rem;
    line-height:1.55;
}

.gdpr-note svg{
    width:16px;
    height:16px;

    flex-shrink:0;

    color:#8b5cf6;
}


/* ======================================================
   ODESLAT
====================================================== */

.contact-form button.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    border:0;

    cursor:pointer;
}

.contact-form button.btn-primary svg{
    width:16px;
    height:16px;
}


/* ======================================================
   SUCCESS
====================================================== */

.success-box{
    position:relative;
    z-index:2;

    min-height:300px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.success-icon{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    border-radius:50%;

    background:#f1ebff;
    color:#8b5cf6;
}

.success-box h2{
    color:#30205c;
    margin-bottom:10px;
}

.success-box p{
    max-width:400px;

    color:#817b8d;
    line-height:1.7;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:900px){

    .contact-page{
        padding:55px 0 75px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        max-width:680px;
    }

    .contact-card{
        padding:32px;
    }

}


@media(max-width:600px){

    .contact-page{
        padding:45px 0 65px;
    }

    .contact-page .section-header{
        margin-bottom:38px;
    }

    .contact-page .section-header h1{
        font-size:2.25rem;
    }

    .contact-card,
    .contact-form{
        padding:27px 22px;
        border-radius:21px;
    }

    .contact-business{
        grid-template-columns:1fr;
    }

}

/* ======================================================
   DECORATIONS
====================================================== */

.contact-wave {
    position: absolute;

    border: 1px solid;

    border-radius: 50%;

    pointer-events: none;
}


.contact-wave-1 {
    width: 620px;
    height: 230px;

    left: -350px;
    top: 210px;

    border-color:
        rgba(226, 177, 67, .15);

    transform: rotate(12deg);
}


.contact-wave-2 {
    width: 700px;
    height: 250px;

    right: -390px;
    bottom: -80px;

    border-color:
        rgba(139, 92, 246, .14);

    transform: rotate(-12deg);
}


.contact-sparkle {
    position: absolute;

    color: var(--gold);

    pointer-events: none;
}


.contact-sparkle-1 {
    top: 190px;
    left: 8%;

    font-size: 16px;
}


.contact-sparkle-2 {
    right: 7%;
    bottom: 100px;

    font-size: 13px;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .contact-page {
        padding: 60px 0 75px;
    }

    .contact-page .section-header {
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 27px 23px;
    }

    .contact-form {
        padding: 30px 23px;
    }

    .contact-business {
        grid-template-columns: 1fr;
    }

}

/* ======================================================
   ABOUT - APPROACH
====================================================== */

.about-approach {
    position: relative;

    padding: 90px 0 100px;

    background: #ffffff;
}


.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    max-width: 1050px;

    margin: 55px auto 0;
}


.approach-item {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 30px 10px 30px 0;

    border-top:
        1px solid rgba(45, 27, 78, .10);
}


.approach-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 14px;

    background:
        rgba(139, 92, 246, .08);

    color: var(--secondary);
}


.approach-item:nth-child(2) .approach-icon {
    background:
        rgba(255, 205, 90, .13);

    color: #c79528;
}


.approach-icon svg {
    width: 20px;
    height: 20px;
}


.approach-content > span {
    display: block;

    margin-bottom: 8px;

    color: var(--secondary);

    font-size: .68rem;
    font-weight: 800;

    letter-spacing: .08em;
}


.approach-content h3 {
    margin: 0 0 11px;

    color: var(--primary);

    font-size: 1.05rem;
}


.approach-content p {
    margin: 0;

    color: var(--muted);

    font-size: .84rem;
    line-height: 1.75;
}


@media (max-width: 750px) {

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

}

/* ======================================================
   PRICING HERO
====================================================== */

.pricing-hero {
    position: relative;
    overflow: hidden;

    padding: 80px 0 90px;

    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(255, 205, 90, .10),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 65%,
            rgba(139, 92, 246, .09),
            transparent 30%
        ),
        #f8f8ff;
}


/* GRID */

.pricing-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    align-items: center;

    gap: 75px;
}


/* ======================================================
   LEVÁ ČÁST
====================================================== */

.pricing-hero-content {
    max-width: 720px;
}


.pricing-hero-content h1 {
    margin: 20px 0 16px;

    max-width: 680px;

    color: var(--primary);

    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.08;

    letter-spacing: -.04em;
}


.pricing-description {
    max-width: 680px;

    margin: 0;

    color: var(--muted);

    font-size: .95rem;
    line-height: 1.75;
}


/* ======================================================
   BENEFITY
====================================================== */

.pricing-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 20px;

    margin: 25px 0 30px;
}


.pricing-benefits span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #625d70;

    font-size: .78rem;
    font-weight: 600;
}


.pricing-benefits svg {
    width: 15px;
    height: 15px;

    color: #8b5cf6;

    stroke-width: 2.5;
}


/* ======================================================
   PRAVÁ ČÁST – KROKY
====================================================== */

.pricing-steps {
    padding: 18px 28px;

    border-radius: 26px;

    background:
        rgba(255, 255, 255, .68);

    border:
        1px solid rgba(139, 92, 246, .07);

    box-shadow:
        0 18px 45px rgba(45, 27, 78, .055);

    backdrop-filter: blur(10px);
}


/* JEDEN KROK */

.pricing-steps .step {
    display: grid;

    grid-template-columns: 46px 1fr;

    align-items: center;

    gap: 16px;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(45, 27, 78, .07);
}


.pricing-steps .step:last-child {
    border-bottom: none;
}


/* IKONA */

.pricing-steps .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background:
        rgba(139, 92, 246, .08);

    color: #7c4dff;
}


.pricing-steps .step:nth-child(2) .step-icon {
    background:
        rgba(255, 205, 90, .12);

    color: #bd8c25;
}


.pricing-steps .step:nth-child(3) .step-icon {
    background:
        rgba(139, 92, 246, .07);
}


.pricing-steps .step-icon svg {
    width: 19px;
    height: 19px;
}


/* TEXT */

.pricing-steps .step-content h4 {
    margin: 0 0 5px;

    color: var(--primary);

    font-size: .92rem;
    font-weight: 700;
}


.pricing-steps .step-content p {
    margin: 0;

    color: var(--muted);

    font-size: .76rem;
    line-height: 1.55;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .pricing-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .pricing-steps {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .pricing-hero {
        padding: 60px 0 70px;
    }

    .pricing-benefits {
        flex-direction: column;

        gap: 9px;
    }

    .pricing-steps {
        padding: 15px 20px;
    }

    .pricing-steps .step {
        grid-template-columns: 40px 1fr;

        gap: 13px;
    }

    .pricing-steps .step-icon {
        width: 40px;
        height: 40px;
    }

}

/* ======================================================
   PRICING SECTION
====================================================== */

.pricing-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0 95px;

    background:
        radial-gradient(
            circle at 5% 45%,
            rgba(255, 205, 90, .07),
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 35%,
            rgba(139, 92, 246, .07),
            transparent 28%
        ),
        #faf9ff;
}


/* obsah vždy nad dekoracemi */

.pricing-section .container,
.pricing-extras .container {
    position: relative;
    z-index: 2;
}


/* ======================================================
   PRICING HEADER
====================================================== */

.pricing-section .section-header {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.pricing-section .section-header h2 {
    max-width: 700px;

    margin:
        18px auto 14px;

    font-size:
        clamp(2rem, 3.6vw, 3rem);

    line-height: 1.12;

    letter-spacing: -.04em;
}


.pricing-section .section-header p {
    max-width: 650px;

    margin: 0 auto;

    line-height: 1.7;
}


/* ======================================================
   GRID
====================================================== */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* ======================================================
   PRICING CARD
====================================================== */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 500px;

    padding: 36px;

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .84);

    border:
        1px solid rgba(139, 92, 246, .055);

    box-shadow:
        0 18px 45px rgba(45, 27, 78, .055);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.pricing-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 55px rgba(45, 27, 78, .09);
}


/* FEATURED */

.pricing-card.featured {
    border:
        1px solid rgba(139, 92, 246, .22);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(247,243,255,.92)
        );

    box-shadow:
        0 22px 55px rgba(108, 76, 255, .10);
}


/* ======================================================
   ICON
====================================================== */

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    border-radius: 15px;

    background:
        rgba(139, 92, 246, .075);

    border:
        1px solid rgba(139, 92, 246, .09);

    color: #7c4dff;
}


.pricing-icon svg {
    width: 22px;
    height: 22px;

    stroke-width: 2;
}


/* ======================================================
   TEXT
====================================================== */

.pricing-card h3 {
    margin: 0 0 20px;

    color: var(--primary);

    font-size: 1.15rem;
}


.price {
    display: flex;
    align-items: baseline;

    gap: 7px;

    margin-bottom: 28px;

    color: var(--primary);

    font-size: 1.75rem;
    font-weight: 800;

    letter-spacing: -.035em;
}


.price span {
    color: var(--muted);

    font-size: .72rem;
    font-weight: 500;

    letter-spacing: 0;
}


/* ======================================================
   LIST
====================================================== */

.pricing-list {
    display: flex;
    flex-direction: column;

    gap: 15px;

    padding: 0;
    margin: 0 0 32px;

    list-style: none;
}


.pricing-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: .82rem;
}


.pricing-list svg {
    width: 15px;
    height: 15px;

    color: #8b5cf6;

    stroke-width: 2.4;

    flex-shrink: 0;
}


/* tlačítko vždy dole */

.pricing-card > .btn-primary,
.pricing-card > .btn-outline {
    width: 100%;

    margin-top: auto;

    text-align: center;
}


/* ======================================================
   BADGE
====================================================== */

.pricing-badge {
    position: absolute;

    top: 22px;
    right: 22px;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        rgba(139, 92, 246, .075);

    color: #8b5cf6;

    font-size: .62rem;
    font-weight: 700;
}


/* ======================================================
   JEMNÉ DEKORACE
====================================================== */

.pricing-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}


.pricing-orb-gold {
    width: 330px;
    height: 330px;

    left: -190px;
    top: 260px;

    background:
        radial-gradient(
            circle,
            rgba(255, 205, 90, .09),
            transparent 70%
        );
}


.pricing-orb-purple {
    width: 400px;
    height: 400px;

    right: -230px;
    top: 100px;

    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .08),
            transparent 70%
        );
}


.pricing-sparkle {
    position: absolute;

    z-index: 1;

    color: #f2c94c;

    font-size: 15px;

    opacity: .85;
}


.pricing-sparkle-1 {
    left: 6%;
    top: 31%;
}


.pricing-sparkle-2 {
    right: 5%;
    bottom: 13%;
}


/* ======================================================
   DOPLŇKOVÉ SLUŽBY
====================================================== */

.pricing-extras {
    position: relative;
    overflow: hidden;

    padding: 90px 0 105px;

    background:
        radial-gradient(
            circle at 100% 20%,
            rgba(139, 92, 246, .08),
            transparent 28%
        ),
        radial-gradient(
            circle at 0% 80%,
            rgba(255, 205, 90, .07),
            transparent 26%
        ),
        #fffdfb;
}


.pricing-extras .section-header {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


/* ======================================================
   EXTRAS GRID
====================================================== */

.pricing-extras-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


.pricing-extra-card {
    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 20px;

    padding: 30px;

    border-radius: 23px;

    background:
        rgba(255,255,255,.78);

    border:
        1px solid rgba(139,92,246,.06);

    box-shadow:
        0 15px 40px rgba(45,27,78,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.pricing-extra-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 22px 48px rgba(45,27,78,.08);
}


.pricing-extra-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 15px;

    background:
        rgba(139,92,246,.075);

    color: #7c4dff;
}


.pricing-extra-icon svg {
    width: 21px;
    height: 21px;
}


.pricing-extra-content h3 {
    margin:
        3px 0 10px;

    color: var(--primary);

    font-size: 1.05rem;
}


.pricing-extra-content p {
    margin:
        0 0 17px;

    color: var(--muted);

    font-size: .8rem;
    line-height: 1.7;
}


.pricing-extra-price {
    display: inline-block;

    padding: 7px 12px;

    border-radius: 999px;

    background:
        rgba(139,92,246,.065);

    color: #7c4dff;

    font-size: .68rem;
    font-weight: 700;
}


/* jemná vlna */

.extras-wave {
    position: absolute;

    width: 700px;
    height: 350px;

    right: -250px;
    bottom: -250px;

    border:
        1px solid rgba(139, 92, 246, .10);

    border-radius: 50%;

    transform: rotate(-12deg);
}


.extras-sparkle {
    right: 8%;
    top: 18%;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 950px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-extras-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .pricing-section,
    .pricing-extras {
        padding:
            65px 0 75px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-extra-card {
        grid-template-columns: 1fr;

        padding: 26px 24px;
    }

}

/* ======================================================
   DOPLŇKOVÉ SLUŽBY
====================================================== */

.pricing-extras {
    position: relative;
    overflow: hidden;

    padding: 85px 0 100px;

    /*
    Sekci záměrně odlišujeme od předchozího ceníku.
    Jemná fialová vytváří vizuální předěl.
    */
    background:
        radial-gradient(
            circle at 8% 80%,
            rgba(255, 205, 90, .12),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 15%,
            rgba(139, 92, 246, .12),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f7f4ff 0%,
            #fbf9ff 48%,
            #fffaf0 100%
        );

    border-top:
        1px solid rgba(139, 92, 246, .07);
}


/* HEADER */

.pricing-extras .section-header {
    max-width: 700px;

    margin: 0 auto 52px;

    text-align: center;
}


.pricing-extras .section-header h2 {
    max-width: 650px;

    margin: 18px auto 14px;

    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.12;

    letter-spacing: -.04em;
}


.pricing-extras .section-header p {
    max-width: 610px;

    margin: 0 auto;

    color: var(--muted);

    font-size: .88rem;
    line-height: 1.7;
}


/* ======================================================
   GRID
====================================================== */

.pricing-extras-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    max-width: 1100px;

    margin: 0 auto;
}


/* ======================================================
   KARTA
====================================================== */

.pricing-extra-card {
    position: relative;
    overflow: hidden;

    display: grid;

    grid-template-columns: 58px 1fr;

    align-items: start;

    gap: 20px;

    min-height: 205px;

    padding: 32px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .82);

    box-shadow:
        0 16px 40px rgba(45, 27, 78, .055);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.pricing-extra-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 24px 55px rgba(45, 27, 78, .09);
}


/*
Barevný proužek nahoře dává kartám identitu,
ale není příliš výrazný.
*/

.pricing-extra-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;
}


/* MARKETING = ZLATÁ */

.pricing-extra-card.marketing {
    border:
        1px solid rgba(218, 169, 52, .15);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.94),
            rgba(255,249,232,.82)
        );
}


.pricing-extra-card.marketing::before {
    background:
        linear-gradient(
            90deg,
            #e6b93f,
            rgba(230,185,63,.12)
        );
}


/* SOCIAL = FIALOVÁ */

.pricing-extra-card.social {
    border:
        1px solid rgba(139, 92, 246, .14);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.94),
            rgba(246,241,255,.86)
        );
}


.pricing-extra-card.social::before {
    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            rgba(139,92,246,.10)
        );
}


/* ======================================================
   IKONY
====================================================== */

.pricing-extra-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 15px;
}


.pricing-extra-card.marketing
.pricing-extra-icon {

    background:
        rgba(255, 205, 90, .14);

    color: #c79528;
}


.pricing-extra-card.social
.pricing-extra-icon {

    background:
        rgba(139, 92, 246, .10);

    color: #7c4dff;
}


.pricing-extra-icon svg {
    width: 21px;
    height: 21px;

    stroke-width: 2;
}


/* ======================================================
   TEXT
====================================================== */

.pricing-extra-content h3 {
    margin: 3px 0 10px;

    color: var(--primary);

    font-size: 1.02rem;
}


.pricing-extra-content p {
    max-width: 450px;

    margin: 0 0 20px;

    color: var(--muted);

    font-size: .78rem;
    line-height: 1.7;
}


/* ======================================================
   CENA / BADGE
====================================================== */

.pricing-extra-price {
    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    border-radius: 999px;

    font-size: .66rem;
    font-weight: 700;
}


.marketing .pricing-extra-price {
    color: #9b741d;

    background:
        rgba(255, 205, 90, .13);
}


.social .pricing-extra-price {
    color: #7444e8;

    background:
        rgba(139, 92, 246, .09);
}


/* ======================================================
   DEKORACE POZADÍ
====================================================== */

.pricing-extras::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 220px;

    left: -260px;
    top: 40px;

    border:
        1px solid rgba(218, 169, 52, .10);

    border-radius: 50%;

    transform: rotate(15deg);
}


.pricing-extras::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 280px;

    right: -320px;
    bottom: -180px;

    border:
        1px solid rgba(139, 92, 246, .11);

    border-radius: 50%;

    transform: rotate(-12deg);
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .pricing-extras-grid {
        grid-template-columns: 1fr;

        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .pricing-extras {
        padding: 65px 0 75px;
    }

    .pricing-extra-card {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 27px 24px;
    }

}