/* Standalone Premium Landing Page Engine for WordPress Technical Services */

:root {
    --bg-color: #f6faf8;
    --text-main: #111111;
    --mint: #00c497;
    --pink: #ff7c9a;
    --yellow: #ffd363;
    --blue: #5dade2;
    --border-color: #111111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: "Segoe UI", Roboto, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    padding-bottom: 40px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- BILLING SWITCHER SYSTEM (NEO-BRUTALISM) --- */
.billing-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}
.switch-label {
    font-size: 16px;
    font-weight: 800;
    color: #666;
    transition: color 0.2s ease;
}
.switch-label.active {
    color: var(--text-main);
    font-weight: 900;
}
.switch-control {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 34px;
}
.switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #fff;
    border: 3px solid var(--border-color);
    border-radius: 34px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 2px 2px 0px var(--border-color);
}
.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px; width: 20px;
    left: 4px; bottom: 4px;
    background-color: var(--mint);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.switch-control input:checked + .switch-slider {
    background-color: var(--yellow);
}
.switch-control input:checked + .switch-slider:before {
    transform: translateX(31px);
    background-color: var(--pink);
}
.discount-badge {
    background: var(--pink);
    color: #111;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    margin-left: 5px;
    display: inline-block;
}
/* --- UPPER SPEED TICKER ANIMS --- */
.speed-ticker {
    background: #111;
    color: #fff;
    padding: 10px 0;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.5px;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 3px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.ticker-wrap {
    display: inline-block;
    animation: tickerInfiniteLoop 30s infinite linear;
}
.ticker-wrap span {
    display: inline-block;
    padding-right: 50px;
}
@keyframes tickerInfiniteLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.33%, 0, 0); }
}

/* --- BRUTALIST HEADER COMPONENT --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0 55px 0;
}
.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
    cursor: default;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo:hover {
    transform: scale(1.05) rotate(-1deg);
}
.dot-pulse {
    color: var(--mint);
    display: inline-block;
    animation: criticalPulse 1.2s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@keyframes criticalPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0.4; }
}
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 14.5px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--mint);
    transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-btn {
    text-decoration: none;
    background: var(--pink);
    color: var(--text-main);
    padding: 10px 20px;
    border: 3px solid var(--border-color);
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 3.5px 3.5px 0px var(--border-color);
    transition: all 0.1s ease;
}
.nav-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5.5px 5.5px 0px var(--border-color);
    background: var(--yellow);
}

/* --- NEO-BRUTALISM GENERAL DESIGN ELEMENTS & HOVERS --- */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-weight: 900;
    font-size: 11.5px;
    letter-spacing: 0.5px;
    border: 3px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 3px 3px 0px var(--border-color);
    margin-bottom: 22px;
    transition: transform 0.2s ease;
}
.badge-mint { background: var(--mint); }
.badge-pink { background: var(--pink); }
.badge-yellow { background: var(--yellow); }
.badge-blue { background: var(--blue); }

/* ორიგინალი ჰოვერ ეფექტები ბეიჯებზე */
.pulse-hover:hover {
    animation: badgePulse 0.6s infinite alternate;
}
@keyframes badgePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05) rotate(2deg); }
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-center h2 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-top: 5px;
}

/* --- HERO ENGINE GRID --- */
.hero-section { margin-bottom: 80px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}
.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.text-highlight {
    color: var(--mint);
    text-shadow: 3px 3px 0px var(--border-color);
}
.hero-description {
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.65;
    color: #2b2b2b;
    margin-bottom: 35px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}
.btn {
    padding: 15px 32px;
    font-weight: 900;
    font-size: 15.5px;
    text-decoration: none;
    border: 3px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 4px 4px 0px var(--border-color);
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}
.btn-primary { background: var(--mint); color: #111; }
.btn-secondary { background: #ffffff; color: #111; }
.btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border-color);
}
.bounce-hover:hover {
    animation: elementBounce 0.4s ease infinite alternate;
}
@keyframes elementBounce {
    0% { transform: translateY(0) translate(-3px, -3px); }
    100% { transform: translateY(-4px) translate(-3px, -3px); }
}

/* --- SERVER MONITORING VISUAL CONTAINER --- */
.hero-diagram-box {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.server-diagram {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.server-diagram:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--border-color);
}
.dynamic-shadow {
    box-shadow: 6px 6px 0px var(--border-color);
}
.diagram-header {
    background: #fafafa;
    border-bottom: 3px solid var(--border-color);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.circle-btn {
    width: 9px;
    height: 9px;
    background: var(--border-color);
    border-radius: 50%;
}
.circle-btn:nth-child(2) { background: var(--pink); border: 1px solid var(--border-color); }
.circle-btn:nth-child(3) { background: var(--yellow); border: 1px solid var(--border-color); }
.server-status {
    margin-left: auto;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-indicator {
    width: 7px;
    height: 7px;
    background: var(--mint);
    border-radius: 50%;
    animation: radarPulse 1s infinite alternate;
}
@keyframes radarPulse {
    0% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}
.diagram-body {
    padding: 35px 22px;
    text-align: center;
}
.gauge-component {
    position: relative;
    margin-bottom: 28px;
    display: inline-block;
}
.gauge-svg {
    width: 145px;
    height: 72px;
}
.gauge-fill {
    transition: stroke-dashoffset 1.8s ease-out;
}
.gauge-value {
    font-size: 30px;
    font-weight: 900;
    margin-top: -12px;
    letter-spacing: -0.5px;
}
.gauge-label {
    font-size: 10px;
    font-weight: 900;
    color: #666;
    letter-spacing: 0.5px;
}
.live-metrics-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.metric-row {
    background: #fafafa;
    border: 3px solid var(--border-color);
    border-radius: 14px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.metric-row:hover {
    transform: translateX(5px);
    background-color: #fffdf2;
}
.m-info strong {
    font-size: 14px;
    font-weight: 800;
    display: block;
    margin-bottom: 1px;
}
.m-info p { font-size: 11.5px; color: #555; font-weight: 600; }
.m-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 9px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 2px 2px 0px var(--border-color);
}

/* --- MID PROMO INSIGHT ALERT --- */
.promo-banner-box { margin-bottom: 80px; }
.promo-inner {
    background: var(--yellow);
    border: 4px solid var(--border-color);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: transform 0.2s ease;
}
.promo-inner:hover {
    transform: scale(1.02);
}
.gift-icon { font-size: 32px; }
.promo-inner h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* --- 3D TILT FLOW DIAGRAM --- */
.process-section { margin-bottom: 80px; }
.process-flow-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}
.flow-step {
    background: #ffffff;
    border: 3.5px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 28px;
    position: relative;
    box-shadow: 4.5px 4.5px 0px var(--border-color);
    transform-style: preserve-3d;
    transform: perspective(800px);
    transition: box-shadow 0.15s ease, transform 0.15s ease, background-color 0.2s ease;
}
.flow-step:hover {
    background-color: #fffdf2;
}
.active-flow {
    background: #fffdf2;
}
.step-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--mint);
    opacity: 0.8;
    margin-bottom: 8px;
}
.flow-step h4 {
    font-size: 18.5px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.flow-step p {
    font-size: 14px;
    color: #444;
    line-height: 1.55;
    font-weight: 600;
}
.flow-connector {
    position: absolute;
    right: -24px;
    top: 45%;
    font-size: 24px;
    font-weight: 900;
    color: var(--border-color);
    pointer-events: none;
}

/* --- PERFORMANCE ANALYTICS PROGRESS BLOCK --- */
.metrics-section { margin-bottom: 80px; }
.metrics-layout {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 28px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}
.metrics-info-side h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.metrics-info-side p {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.65;
    color: #444;
}
.metrics-bars-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
}
.diagram-bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bar-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 14px;
}
.bar-track {
    background: #f0f3f2;
    border: 3px solid var(--border-color);
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    width: 0%;
    transition: width 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.fill-mint { background: var(--mint); }
.fill-pink { background: var(--pink); }
.fill-yellow { background: var(--yellow); }

/* --- SERVICES MATRICES SPREADSHEET --- */
.matrix-section { margin-bottom: 80px; }
.matrix-table-container {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 26px;
    overflow-x: auto;
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}
.matrix-table th {
    background: #fafafa;
    border-bottom: 3.5px solid var(--border-color);
    padding: 20px 16px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: -0.5px;
}
.col-economy { width: 15%; }
.col-premium { background: #fffdf2; width: 18%; border-left: 3.5px solid var(--border-color) !important; border-right: 3.5px solid var(--border-color) !important; }
.col-vip { width: 15%; }
.matrix-table td {
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid #edeff0;
    text-align: center;
    color: var(--text-main);
    transition: background-color 0.15s ease;
}
.matrix-table tr:hover td {
    background-color: #fcfdfe;
}
.feature-title {
    text-align: left !important;
    padding-left: 28px !important;
    font-size: 14.5px !important;
    color: #111 !important;
}
.check-yes { color: var(--mint); font-size: 24px; font-weight: 900; }
.check-no { color: var(--pink); font-size: 19px; font-weight: 900; opacity: 0.35; }

/* --- PREMIUM TIER CARDS GRID --- */
.pricing-section { margin-bottom: 50px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 35px;
}
.price-card {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 28px;
    padding: 45px 32px;
    box-shadow: 5px 5px 0px var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(800px);
    transition: box-shadow 0.15s ease, transform 0.15s ease, background-color 0.2s ease;
}
.featured-card {
    background: #fffdf2;
    box-shadow: 7.5px 7.5px 0px var(--border-color);
}
.pop-label {
    position: absolute;
    top: -16px;
    left: 32px;
    background: var(--pink);
    padding: 4px 14px;
    font-weight: 900;
    font-size: 11px;
    border: 3px solid var(--border-color);
    border-radius: 8px;
}
.card-head { margin-bottom: 15px; }
.price-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 5px; }
.price-box { font-size: 46px; font-weight: 900; color: #111; }
.price-box .curr { font-size: 24px; margin-left: 3px; font-weight: 700; }
.card-brief { font-size: 13.5px; font-weight: 600; color: #555; line-height: 1.5; margin-bottom: 30px; height: 60px; }

.order-button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 900;
    border: 3px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--border-color);
    transition: all 0.1s ease;
}
.order-button:hover { 
    transform: translate(-2px, -2px); 
    box-shadow: 5px 5px 0 var(--border-color); 
}
.standard-btn { background: var(--mint); }
.standard-btn:hover { background: var(--yellow); }

/* --- GLOBAL SCROLL REVEAL SUITE --- */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ——— SITE ENTRY INTRO ANIMATION ——— */
.site-entry-anim {
    animation: slideDownIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes slideDownIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   NEW RICH LANDING FOOTER STYLES
   ========================================================================== */
.landing-footer {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    margin-top: 80px;
    box-shadow: 6px 6px 0px var(--border-color);
}
.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 3px dashed var(--border-color);
}
.footer-col-brand .logo { margin-bottom: 15px; }
.footer-brand-text { font-size: 14px; font-weight: 600; line-height: 1.6; color: #444; }
.footer-col-nav h4 { font-size: 15px; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 14px; transition: all 0.2s ease; }
.footer-links a:hover { color: var(--mint); transform: translateX(3px); }
.console-box {
    background: #111111;
    color: #ffffff;
    padding: 20px;
    border-radius: 14px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.console-row { display: flex; justify-content: space-between; }
.text-mint { color: var(--mint); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 25px; font-size: 12px; font-weight: 800; }
.location-stamp { opacity: 0.7; }

/* ==========================================================================
   DYNAMIC POPUP MODAL WINDOW STYLES
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.popup-box {
    background: #ffffff;
    border: 4px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 35px;
    position: relative;
    transform: scale(0.85);
    box-shadow: 8px 8px 0px var(--border-color);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-overlay.active .popup-box {
    transform: scale(1);
}
.close-popup-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-popup-x:hover { color: var(--pink); }
.popup-header h3 { font-size: 23px; font-weight: 900; margin: 10px 0 5px 0; }
.popup-header p { font-size: 13.5px; font-weight: 600; color: #666; margin-bottom: 25px; }
.popup-form { display: flex; flex-direction: column; gap: 15px; }
.input-element { display: flex; flex-direction: column; gap: 6px; }
.input-element label { font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--text-main); }
.input-element input, .input-element textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 3px solid var(--border-color);
    border-radius: 12px;
    background: #fafafa;
    outline: none;
    transition: background 0.2s ease;
}
.input-element input:focus, .input-element textarea:focus { background: #ffffff; border-color: var(--mint); }
.submit-popup-btn { width: 100%; padding: 14px; cursor: pointer; margin-top: 5px; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE ENGINE
   ========================================================================== */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-buttons { justify-content: center; }
    .hero-diagram-box { max-width: 460px; margin: 0 auto; width: 100%; }
    .footer-grid-layout { grid-template-columns: 1fr 1fr; }
    .footer-col-console { grid-column: span 2; }
    .flow-connector { display: none; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .header { flex-direction: column; gap: 20px; padding: 20px 0; }
    .nav { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .metrics-layout { grid-template-columns: 1fr; padding: 25px; }
    .footer-grid-layout { grid-template-columns: 1fr; gap: 30px; }
    .footer-col-console { grid-column: span 1; }
    .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 550px) {
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
    .price-box { font-size: 38px; }
}.package-service-list{list-style:none;padding:0;margin:0 0 28px;display:flex;flex-direction:column;gap:10px;min-height:170px}.package-service-list li{position:relative;padding-left:24px;font-size:13.5px;font-weight:800;line-height:1.35;color:#25313d}.package-service-list li:before{content:'✓';position:absolute;left:0;top:0;color:var(--mint);font-weight:900}.price-card .order-button{margin-top:auto}
