:root {
    --neon-blue: #59A2FF;
    --neon-pink: #E80074;
    --neon-orange: #E95233;
    --deep-ink: #111111;
    --glass: rgba(255, 255, 255, 0.07);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Impact, sans-serif;
    background: #111;
    background-image: 
        radial-gradient(at 0% 0%, hsla(197, 100%, 49%, 0.5) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(339, 100%, 45%, 0.5) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(11, 80%, 55%, 0.5) 0, transparent 50%),
        radial-gradient(at 50% 100%, hsla(214, 100%, 68%, 0.5) 0, transparent 50%);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--neon-blue);
}

.hero-section {
    text-align: center;
    padding: 100px 20px 10px;
}

.hero-section h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    font-style: italic;
    background: linear-gradient(to bottom, #fff 30%, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(89, 162, 255, 0.4));
}
.design-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.design-btn {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.design-btn:hover:not(.active-design) {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(232, 0, 116, 0.3);
}

.active-design {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
    color: #666;
    cursor: default;
    pointer-events: none;
}
.plan-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.plan-btn {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-btn:hover:not(.active-plan) {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(89, 162, 255, 0.3);
}

.active-plan {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
    color: #666;
    cursor: default;
    pointer-events: none;
}

.success-icon {
            font-size: 4rem;
            color: var(--neon-blue);
            margin-bottom: 20px;
            filter: drop-shadow(0 0 15px var(--neon-blue));
        }
        
        .confirmation-box {
            text-align: center;
            padding: 40px 20px;
        }

        .status-badge {
            display: inline-block;
            background: rgba(89, 162, 255, 0.1);
            border: 1px solid var(--neon-blue);
            color: var(--neon-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .terminal-output {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin: 30px auto;
            max-width: 500px;
            text-align: left;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #888;
        }

        .terminal-line {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .terminal-line span:last-child {
            color: var(--neon-pink);
        }

        .next-steps {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 40px;
        }

 .terms-grid { display: grid; grid-template-columns: 250px 1fr; gap: 40px; }
        .terms-nav { position: sticky; top: 20px; font-size: 0.8rem; color: #666; }
		 .terms-nav a { position: sticky; top: 20px; font-size: 0.8rem; text-decoration: none; color: #fff; }
		  .terms-nav a:hover { color: var(--neon-blue); }
        .terms-nav div { margin-bottom: 15px; cursor: pointer; transition: color 0.3s; text-transform: uppercase; }
        .terms-nav div:hover { color: var(--neon-blue); }
        .terms-content { color: #aaa; font-size: 0.95rem; }
        .terms-content h2 { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
        

.manifesto-section {
    max-width: 800px;
    text-align: center;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.manifesto-section h2 {
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.manifesto-section p {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

th {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
    padding: 0 20px;
    font-size: 0.8rem;
}

.product-row {
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-row:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(232, 0, 116, 0.2);
}

.product-row.is-hidden {
    display: none;
}

td {
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px 0 0 12px;
    font-weight: bold;
    font-size: 1.2rem;
}

td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 12px 12px 0;
    text-align: right;
}

.price {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.subtotal {
    display: block;
    margin-top: 5px;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.badge {
    background: var(--neon-orange);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    vertical-align: middle;
    margin-left: 10px;
}

.subscribe-btn {
    background: var(--neon-blue);
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(89, 162, 255, 0.4);
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(89, 162, 255, 0.7);
}

.btn-juicy-pink {
    background: var(--neon-pink);
    box-shadow: 0 0 15px rgba(232, 0, 116, 0.4);
}

.btn-juicy-pink:hover {
    box-shadow: 0 0 25px rgba(232, 0, 116, 0.7);
}

.btn-juicy-orange {
    background: var(--neon-orange);
    box-shadow: 0 0 15px rgba(233, 82, 51, 0.4);
}

.btn-juicy-orange:hover {
    box-shadow: 0 0 25px rgba(233, 82, 51, 0.7);
}

.spec-space {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: normal;
    margin-top: 10px;
    line-height: 1.4;
}

.read-more {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-left: 5px;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    padding: 60px 0;
    background: rgba(0,0,0,0.6);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-sizing: border-box;
}

/* GLOBAL PLAN NAVIGATION - Above @media */
.design-nav {
    display: table;
    table-layout: fixed; 
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    border-spacing: 10px 0; 
}

.design-btn {
    display: table-cell; 
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
    font-size: clamp(0.5rem, 1vw, 0.8rem);    padding: 25px 5px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

button.design-btn {
    width: 100%;
    height: 100%;
    font-family: inherit;
}

.active-design {
    display: table-cell !important;
    border-color: var(--neon-pink)  !important; /* Highlights the border */
    color: var(--neon-pink);        /* Changes the text color */
    opacity: 0.5;
    cursor: default;
    border-color: transparent;
}

.plan-nav {
    display: table;
    table-layout: fixed; 
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    border-spacing: 10px 0; 
}

.plan-btn {
    display: table-cell; 
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
font-size: clamp(0.5rem, 1vw, 0.8rem);    padding: 25px 5px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

button.plan-btn {
    width: 100%;
    height: 100%;
    font-family: inherit;
}
.active-plan {
    display: table-cell !important;
	border-color: var(--neon-blue)  !important; /* Highlights the border */
	color: var(--neon-blue);        /* Changes the text color */
    opacity: 0.5;
    cursor: default;
    border-color: transparent;
}


/* Container for the Video */
.video-wrapper.self-hosted {
    position: relative;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    line-height: 0; /* Removes bottom gap */
}

video {
    width: 100%;
    height: auto;
    filter: contrast(1.1) brightness(0.9);
}

/* Scanline Effect */
.scanline {
    width: 100%;
    height: 2px;
    background: rgba(89, 162, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Metadata Overlays */
.overlay-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    padding: 10px;
    pointer-events: none;
    text-shadow: 0 0 5px var(--neon-blue);
}

.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }

 /* Ensuring text content within the glass panel is readable and styled correctly */
        .policy-content h2 {
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 0;
            border-bottom: 1px solid rgba(89, 162, 255, 0.2);
            padding-bottom: 10px;
        }
        .policy-content h3 {
            color: var(--neon-pink);
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-top: 30px;
        }
        .policy-content p, .policy-content li {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
        }
        .policy-content ul {
            list-style: none;
            padding: 0;
        }
        .policy-content li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .policy-content strong {
            color: #fff;
        }

/* Custom Controls */
.video-controls-bar {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-trigger {
    background: var(--glass);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 8px 15px;
    font-family: inherit;
    font-weight: bold;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.play-trigger:hover {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-blue);
}

.progress-track {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* The "Stupid" Slider Reset */
.hyper-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

/* Slider Knob - Chrome/Safari */
.hyper-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    cursor: pointer;
    transition: 0.2s;
}

/* Slider Knob - Firefox */
.hyper-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    cursor: pointer;
    border: none;
}

/* Detail blocks */

.detail-block { margin-bottom: 50px; }
        .detail-block h2 { color: var(--neon-blue); text-transform: uppercase; letter-spacing: 4px; border-left: 4px solid var(--neon-blue); padding-left: 20px; margin-bottom: 25px; }
        .detail-block h3 { color: var(--neon-pink); text-transform: uppercase; font-size: 1.1rem; margin-top: 30px; letter-spacing: 2px; }
        .detail-text { font-size: 1.05rem; line-height: 1.8; color: #bbb; text-align: justify; }
        .tech-list { list-style: none; padding: 0; margin: 20px 0; }
        .tech-list li { padding: 15px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); margin-bottom: 10px; border-radius: 8px; }
        .tech-list li strong { color: var(--neon-pink); display: block; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 5px; }

.manifesto-partners {
    display: flex;             /* Initializes the flexbox axis[cite: 1] */
    justify-content: center;   /* Centers horizontally[cite: 1] */
    align-items: center;       /* Centers vertically[cite: 1] */
    gap: 40px;                 /* Precision gap between images[cite: 1] */
    margin-top: 30px;          /* Separation from the manifesto text[cite: 1] */
    flex-wrap: wrap;           /* Prevents overflowing off-screen[cite: 1] */
    max-width: 100%;           /* Keeps container within screen width[cite: 1] */
}

.manifesto-partners img {
    display: block;            /* Removes "stupid" inline bottom gaps[cite: 1] */
    max-height: 60px;          /* Normalizes logo height for vertical alignment[cite: 1] */
    width: auto;               /* Maintains aspect ratio[cite: 1] */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));[cite: 1]
}

.manifesto-bottom-partners {
    display: flex;             /* Initializes the flexbox axis[cite: 1] */
    justify-content: center;   /* Centers horizontally[cite: 1] */
    align-items: center;       /* Centers vertically[cite: 1] */
    gap: 40px;                 /* Precision gap between images[cite: 1] */
    flex-wrap: wrap;           /* Prevents overflowing off-screen[cite: 1] */
    max-width: 100%;           /* Keeps container within screen width[cite: 1] */
}

.manifesto-bottom-partners img {
    display: block;            /* Removes "stupid" inline bottom gaps[cite: 1] */
    max-height: 60px;          /* Normalizes logo height for vertical alignment[cite: 1] */
    width: auto;               /* Maintains aspect ratio[cite: 1] */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));[cite: 1]
}

/* Navigation Reconstruction */
nav {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the .menu-center links */
    align-items: center;
    padding: 30px 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.lang-nav-top {
    position: absolute;
    left: 40px; /* Anchors to top-left corner */
    display: flex;
    gap: 15px;
}

.flag-icon-small img {
    width: 24px;
    height: 24px;
    border-radius: 50%; /* Makes icons round */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.flag-icon-small:hover img {
    transform: scale(1.2);
    border-color: var(--neon-blue);
}

.menu-center {
    display: flex;
    gap: 50px;
}

/* Hero Section Language Uplink */
.lang-nav-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.flag-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: color 0.3s;
}

.flag-btn img {
    width: 98px; /* Bigger version as requested */
    height: 98px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.flag-btn:hover img {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
    transform: translateY(-5px);
}

.flag-btn:hover {
    color: var(--neon-pink);
}

.checkout-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
        }

        .cart-summary h2 {
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 0;
        }

        .checkout-form label {
            display: block;
            text-transform: uppercase;
            font-size: 0.7rem;
            letter-spacing: 2px;
            margin-bottom: 8px;
            color: var(--neon-blue);
        }

        .checkout-form input {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            color: #fff;
            margin-bottom: 20px;
            box-sizing: border-box;
        }

        .checkout-form input:focus {
            border-color: var(--neon-pink);
            outline: none;
            box-shadow: 0 0 10px rgba(232, 0, 116, 0.2);
        }

        .order-total-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }

        .total-price {
            font-family: 'Courier New', monospace;
            font-size: 2.5rem;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            margin: 20px 0;
        }
         .total-price-new {
            font-family: 'Courier New', monospace;
            font-size: 1.6rem;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            margin: 20px 0;
        }
		
		/* Added only for error visibility in placeholders */
    .input-error::placeholder { color: #E80074 !important; opacity: 1; }
input:-webkit-autofill { -webkit-box-shadow: 0 0 0 30px #000 inset !important; -webkit-text-fill-color: #fff !important; }

/* Added only for TERMS OF BUSINESS PAGE */
.termination-calc {
            background: rgba(232, 0, 116, 0.03);
            border: 1px dashed var(--brand, #E80074);
            padding: 20px;
            margin: 15px 0;
            font-family: monospace;
            font-size: 0.9em;
        }
        .calc-header {
            color: var(--brand, #E80074);
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .calc-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 5px 0;
        }
        .calc-total {
            border-top: 2px solid var(--brand, #E80074);
            margin-top: 10px;
            padding-top: 10px;
            font-weight: bold;
        }
.philosophy-highlight {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid var(--glass);
    position: relative;
    overflow: hidden; /* This is vital to keep the 'bog' in the corner */
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.philosophy-highlight::before {
    content: "MERCHANT FOUNDATION";
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--neon-blue);
}

.philosophy-highlight::after {
    content: "";
    position: absolute;
    /* Positioned exactly in the bottom-right corner */
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 75%);
    opacity: 0.4; /* Stronger 'bog' presence */
    filter: blur(60px); /* Massive blur for the airy, non-industrial look */
    z-index: 0;
    pointer-events: none;
}

.ph-content {
    position: relative;
    z-index: 1; /* Keeps your posh text readable over the glow */
}

.philosophy-highlight p {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
    font-family: inherit;
}
/* Design Services Page Highlights */
.design-services-highlight {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid var(--glass);
    position: relative;
    overflow: hidden; /* This is vital to keep the glow blob in the corner */
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.design-services-highlight::before {
    content: "THE TOOLS THAT DRIVE PROFIT";
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--neon-blue);
}

.design-services-highlight::after {
    content: "";
    position: absolute;
    /* Positioned exactly in the bottom-right corner */
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 75%);
    opacity: 0.4; /* Stronger visual glow presence */
    filter: blur(60px); /* Massive blur for the airy, non-industrial look */
    z-index: 0;
    pointer-events: none;
}

.de-content {
    position: relative;
    z-index: 1; /* Keeps text fully readable over the ambient background glow */
}

.design-services-highlight p {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
    font-family: inherit;
}

/* Cookie Banner Styles */
.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text strong {
    color: var(--neon-blue);
    letter-spacing: 2px;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 5px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #ccc;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-btn.accept {
    background: var(--neon-blue);
    border: none;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(89, 162, 255, 0.3);
}

.cookie-btn.accept:hover {
    background: #478de6;
    box-shadow: 0 0 20px var(--neon-blue);
}

.cookie-link {
    color: #666;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-link:hover {
    color: var(--neon-pink);
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}



/* MOBILE OVERRIDES */
@media screen and (max-width: 768px) {
    
	
	table, tbody, th, td, tr {
        display: block;
    }

    thead {
    display: none !important;
}

    .product-row {
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px !important;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.5);
    }

    td {
        border: none !important;
        text-align: center !important;
        padding: 20px;
        border-radius: 0 !important;
    }

    td:first-child {
        padding-top: 30px;
    }

    td:last-child {
        padding-bottom: 30px;
        background: rgba(255, 255, 255, 0.03);
    }

    .subscribe-btn {
        width: 100%;
    }

    .plan-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
        gap: 10px;
        width: 90%;
        margin: 20px auto;
    }

    .plan-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 5px;
        font-size: 0.85rem;
        border-radius: 12px;
        box-sizing: border-box;
    }

        .active-plan.btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 5px;
        font-size: 0.85rem;
        border-radius: 12px;
        box-sizing: border-box;
    }
	
	.design-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
        gap: 10px;
        width: 90%;
        margin: 20px auto;
    }

    .design-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 5px;
        font-size: 0.85rem;
        border-radius: 12px;
        box-sizing: border-box;
    }

        .active-design.btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 5px;
        font-size: 0.85rem;
        border-radius: 12px;
        box-sizing: border-box;
    }
	
            .checkout-grid {
                grid-template-columns: 1fr;
            }
	
	    .terms-grid {
        display: flex;
        flex-direction: column;
    }

    .terms-nav {
        position: relative !important; /* Disables sticky/fixed positioning for mobile */
        top: 0 !important;
        display: block !important;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .terms-nav div {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .terms-nav div:last-child {
        border-bottom: none;
    }

    .terms-content {
        width: 100% !important;
        padding: 0 !important;
    }
	
	
      
	/* Добавить внутрь @media screen and (max-width: 768px) */
.menu-center a:last-child {
    display: inline-block;
    padding: 8px 16px;
    background: #E80074; /* Neon Pink */
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(232, 0, 116, 0.5);
    border: 1px solid #E80074;
    transition: all 0.3s ease;
}

.menu-center a:last-child:hover {
    box-shadow: 0 0 20px rgba(232, 0, 116, 0.8);
    transform: scale(1.05);
}

    footer {
        font-size: 0.6rem;
        padding: 60px 15%;
    }
	

    /* 3. The "Insurance" Policy */
    html, body {
        max-width: 100vw;
        overflow-x: hidden; /* Hard-stops any element from pushing the screen wide */
    }
	
	.manifesto-partners, 
    .manifesto-bottom-partners {
        flex-direction: row;      /* Keeps them side-by-side if they fit */
        flex-wrap: wrap;          /* Drops logos to a new line instead of going off-screen */
        justify-content: center;  /* Keeps the group centered */
        gap: 20px;                /* Maintains clean spacing between partners[cite: 1] */
    }

    .manifesto-partners img, 
    .manifesto-bottom-partners img {
        max-height: 45px;         /* Scales down height for mobile screens[cite: 1] */
        width: auto;              /* Maintains the correct aspect ratio[cite: 1] */
    }
	
	.lang-nav-top {
        position: static; /* Moves flags into the flow on small screens */
        margin-bottom: 20px;
    }
    nav {
        flex-direction: column !important;
        padding: 20px !important; /* Tightens the top/bottom space */
        gap: 10px !important;     /* Kills the monstrous gap between flags and menu */
        align-items: center !important;
    }
	.cookie-content {
        flex-direction: column;
        text-align: center;
    }
        .cookie-overlay {
        position: fixed !important;
        bottom: 10px !important;
        /* Pin both sides to force centering and create the gaps */
        left: 10px !important;
        right: 10px !important;
        /* Kill the desktop width and centering transform */
        width: auto !important;
        transform: none !important; 
        padding: 20px;
        box-sizing: border-box !important;
    }
    
	
}
@media screen and (max-width: 1024px) {
    .menu-center {
        display: flex !important;
        flex-wrap: wrap !important;     /* Allows wrapping to exactly two lines */
        justify-content: center !important;
        gap: 15px !important;      /* Vertical gap between the two lines, horizontal gap between items */
        width: 100% !important;
        max-width: 300px;               /* Limits width to force the wrap onto two lines */
        margin: 0 auto !important;      /* Keeps the two-line block centered */
    }

    .menu-center a {
        font-size: 11px !important;
    }
	
	/* Кнопка для мобильных и планшетов (до 1024px) */
@media screen and (max-width: 1024px) {
    .menu-center a:last-child {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        background-color: #E80074 !important; /* Ваш Neon Pink */
        color: #ffffff !important;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #E80074;
        /* Устранение "белой вспышки" */
        -webkit-print-color-adjust: exact;
        box-shadow: 0 0 15px rgba(232, 0, 116, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .menu-center a:last-child:active {
        transform: scale(0.95);
        box-shadow: 0 0 5px rgba(232, 0, 116, 0.8);
    }
	.manifesto-section h2, .manifesto-title {
        font-size: 1.5rem !important; /* Уменьшаем заголовок */
    }
    
    .manifesto-section p, .manifesto-text {
        font-size: 1.4rem !important; /* Уменьшаем основной текст */
        line-height: 1.4;
    }
}