/* ============================================================
   TeleGreen.ru — FULL STYLE.CSS
   Все стили локальные, без Tailwind, без внешних зависимостей
   ============================================================ */

/* --------------------------
   CSS VARIABLES
--------------------------- */
:root {
    --green: #42a435;
    --green-dark: #2b6e20;
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --yellow: #eab308;
    --dark: #1e293b;
    --gray: #64748b;
    --light: #f7f9fb;
    --white: #ffffff;

    --radius: 12px;
    --shadow: 0 4px 18px rgba(0,0,0,0.08);
    --transition: 0.25s ease;
}

/* --------------------------
   GLOBAL RESET
--------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: var(--light);
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------
   CONTAINER
--------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------
   HEADER
--------------------------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__inner {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header__logo {
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
        width: 200px;
    align-items: flex-end;
    transition: all 0.3s 
ease-in-out;
}

.header.header-on-top .header__logo .square {
    height: 40px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: squareBig;
    animation-name: squareBig;
    -webkit-animation-timing-function: 
ease;
    animation-timing-function: 
ease;
}
.header .header__logo .square {
    height: 40px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: squareBig;
    animation-name: squareBig;
    -webkit-animation-timing-function: 
ease;
    animation-timing-function: 
ease;
    transition: all 0.3s 
ease-in-out;
}
.hero__top-description {

    font-weight: 400;
    font-size: 25px;
    line-height: 19px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.fromLeftIn {
    transition: transform 1s 
ease, opacity 1s 
ease;
    transform: translate(0, 0);
    opacity: 1;
}
.hero__top-description-border {
    background-color: rgb(68, 172, 51);
    width: 63px;
    display: inline-block;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    margin-right: 15px;
}
.hero__green-text {
    display: flex;
    font-weight: 800;
    color: #44ac33;
    line-height: 19px;
    font-size: 25px;
    margin-top: -8px;
    margin-right: 5px;
}
.square {
  box-shadow: 0 -5px 7px -5px rgba(0, 0, 0, .5), 5px 0 7px -5px rgba(0, 0, 0, .5);

 
  .st0{fill:#484442;}
	.st1{fill:#42A435;}
}

.letter {
  .sm{fill:#484442;} 
   .sg{fill:#42A435;}
}

.header.header-on-top .header__logo .letter {
    transform: translateY(100%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: letterDown;
    animation-name: letterDown;
    -webkit-animation-timing-function: 
ease;
    animation-timing-function: 
ease;
}
.header .header__logo .letter {
    width: 133px;
    margin-left: 5px;
    height: 25px;
    transform-style: preserve-3d;
    transform: translateY(100%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: letterDown;
    animation-name: letterDown;
    -webkit-animation-timing-function: 
ease;
    animation-timing-function: 
ease;
    transition: all 0.3s 
ease-in-out;
}


.header:hover, 
.header:focus {

  .header__logo .square {
    height: 25px;
   

  }
  .header__logo .letter {
    transform: translateY(0%);

  }
}
/* Полезные статьи */
.tg-articles {
    padding: 100px 0;
    background: #ffffff;
}

.tg-articles-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tg-articles-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
}

/* Сетка карточек статей */
.tg-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.tg-article-card {
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.35s ease;
    cursor: pointer;
}

.tg-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(5,150,105,0.25);
    border-color: var(--green);
}

/* Картинка */
.tg-article-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Контент */
.tg-article-content {
    padding: 20px 24px;
}

.tg-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f172a;
}

.tg-article-content p {
    color: #475569;
    line-height: 1.5;
}

/* Кнопка */
.tg-articles-footer {
    margin-top: 40px;
    text-align: center;
}

.tg-articles-btn {
    padding: 14px 40px;
    background: var(--green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    transition: 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.tg-articles-btn:hover {
    background: #047857;
}


.tg-advantages-diagram {
    padding: 120px 0;
    background: #f1f5f9;
}

.tg-adv-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Карточки */
.tg-adv-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: 0.3s ease;
    cursor: pointer;
    margin: 25px 0;
}

.tg-adv-item:hover {
    transform: translateX(8px);
    border-color: var(--green);
    box-shadow: 0 12px 30px rgba(5,150,105,0.18);
}

.tg-adv-item:hover h3 {
    color: var(--green);
}

/* Иконка */
.tg-adv-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tg-adv-icon svg {
    width: 42px;
    height: 42px;
    transition: 0.3s;
}

.tg-adv-item:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Текст */
.tg-adv-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}
.tg-adv-text p {
    margin-top: 4px;
    font-size: 16px;
    color: #475569;
}

/* Центр */
.tg-adv-center {
    width: 34%;
    display: flex;
    justify-content: center;
}

.tg-adv-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2.6s infinite ease-in-out;
    box-shadow: 0 0 0 rgba(5,150,105,0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.3); }
    50% { box-shadow: 0 0 40px 10px rgba(5,150,105,0.25); }
    100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.3); }
}

/* Линии */
.tg-lines-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tg-line {
    stroke: var(--green);
    stroke-width: 3;
}

.dashed {
    stroke-dasharray: 10;
    animation: dashmove 2s linear infinite;
}

@keyframes dashmove {
    to { stroke-dashoffset: -20; }
}

/* Появление */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: .9s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .tg-adv-container { }
    .tg-lines-svg {  }


.tg-adv-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
}
    .tg-article-content {
        padding: 7px 10px;
        font-size: 13px;
    }
.tg-article-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f172a;
}

.tg-article-content p {
    color: #475569;
    line-height: 1.3;
}

/* Текст */
.tg-adv-text h3 {
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}
.tg-adv-text p {
    margin-top: 4px;
    font-size: 11px;
    color: #475569;
}

.tg-adv-item {
    gap: 10px;
    padding: 5px;
    margin: 15px 0;
}

    .category-card {
        padding: 5px;
    }

.tg-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .category-grid.grid-4{
        grid-template-columns: repeat(2, 1fr) !important;
    }


.tg-adv-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--green);
}

.tg-advantages-diagram {
    padding: 40px 0;
}

.tg-adv-center {
    align-items: center;
}

}

.ticket-3d svg{
    width: 100%;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__icon {
    width: 28px;
    height: 28px;
    background: var(--green);
    border-radius: 6px;
    transition: transform var(--transition);
}

.logo:hover .logo__icon {
    transform: rotate(12deg);
}

.logo__text {
    font-weight: 800;
    font-size: 24px;
}

.logo__text--green {
    color: var(--green);
}

/* DESKTOP NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav--desktop {
    display: flex;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition);
    padding: 8px 0;
}

.nav__link:hover {
    color: var(--green);
}

/* DROPDOWN */
.nav__item--dropdown .nav__link--dropdown {
    cursor: pointer;
}
.footer-svg {
  .st0{display:none;fill:#606060;}
  .st1{fill:#FFFFFF;}
  .st2{fill:#42A435;}
  .st3{enable-background:new    ;}
}
.dropdown {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    width: 230px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav__item--dropdown:hover .dropdown {
    display: block;
}

.dropdown__link {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--dark);
    transition: background var(--transition);
}

.dropdown__link:hover {
    background: #eef2ff;
}

/* CTA BUTTON */
.btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn--green {
    background: var(--green);
    color: var(--white);
}

.btn--green:hover {
    background: var(--green-dark);
}

.btn--blue {
    background: var(--blue);
    color: var(--white);
}

.btn--blue:hover {
    background: var(--blue-dark);
}

/* MOBILE MENU TOGGLE */
.mobile-toggle {
    display: none;
    font-size: 30px;
    background: none;
}

/* --------------------------
   MOBILE MENU
--------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: 2px 0 12px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__close {
    font-size: 32px;
}

.mobile-menu__nav {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu__section-title {
    font-weight: 700;
    font-size: 15px;
    margin-top: 22px;
}

.mobile-menu__link {
    padding: 1px 0;
    font-size: 15px;
    border-bottom: 1px solid #e5e7eb;
    color: var(--dark);
}

.mobile-menu__cta {
    margin-top: 25px;
}

/* --------------------------
   SECTIONS
--------------------------- */
.section {
    padding: 80px 0;
}

.section--gray {
    background: #f1f5f9;
}

.section__title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

/* --------------------------
   HERO SECTION
--------------------------- */
.section--hero {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
}

.hero__subtitle {
    margin-top: 18px;
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* --------------------------
   GRID
--------------------------- */
.grid {
    display: grid;
    gap: 28px;
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --------------------------
   CARD COMPONENT
--------------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.card--tariff-main {
    border: 3px solid var(--green);
}

/* --------------------------
   CONTACT FORM
--------------------------- */
.contact-form {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius);
    font-size: 15px;
    transition: border var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

/* --------------------------
   FOOTER
--------------------------- */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 70px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__title--green {
    color: var(--green);
}

.footer__subtitle {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer__subtitle--spaced {
    margin-top: 20px;
}

.footer__link {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #e5e7eb;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--green);
}

.footer__text {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer__social-link svg {
    transition: fill var(--transition);
}

.footer__social-link:hover svg {
    fill: var(--green);
}

.footer__bottom {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

/* --------------------------
   SCROLL TO TOP BUTTON
--------------------------- */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--green-dark);
}

/* --------------------------
   ANIMATIONS
--------------------------- */
.js-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.js-animate--visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------
   RESPONSIVE
--------------------------- */

@media (max-width: 992px) {
    .grid--3, .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .grid-tarif.grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
        overflow-y: auto;
        width: 100%;
    }
    .tg-skd-hero__grid{
        display: block !important;
    }

    .nav--desktop {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .section__title {
        font-size: 34px;
    }

    .hero__title {
        font-size: 46px;
    }

    .grid--3, .grid--4, .grid--2 {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 38px;
    }
}

/* ============================================================
   COMPONENTS — CARDS, ICONS, BUTTONS, SHADOWS, DECOR
   ============================================================ */

/* UNIVERSAL CARD BLOCK */
.card-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* ICON IN CARD */
.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(59,130,246,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--blue);
}

/* MAIN ADVANTAGE BLOCK */
.advantage {
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-4px);
}

/* HERO BACKGROUND DECOR */
.hero-decor {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(5,150,105,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(2px);
}

.hero-decor-2 {
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(3px);
}

/* STATISTIC CARDS */
.statistic {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.statistic:hover {
    transform: translateY(-4px);
}

.statistic__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.statistic__text {
    font-size: 16px;
    color: var(--gray);
}

/* CHART MOCKUP BAR */
.chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    margin-top: 12px;
}

.chart__bar {
    width: 10%;
    background: var(--blue);
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
}

.chart__bar:hover {
    background: var(--blue-dark);
}

/* BUTTONS LARGE */
.btn-lg {
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-lg--green {
    background: var(--green);
    color: var(--white);
}

.btn-lg--green:hover {
    background: var(--green-dark);
}

.btn-lg--outline {
    border: 2px solid var(--gray);
    color: var(--dark);
}

.btn-lg--outline:hover {
    background: #f3f4f6;
}

/* VIDEO DEMO BUTTON */
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 18px;
    border-radius: var(--radius);
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.btn-video:hover {
    background: #f3f4f6;
}

/* SECTOR / CATEGORY CARDS */
.category-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border-top: 4px solid var(--blue);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.category-card__icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    fill: var(--blue);
}

.category-card__title {
    font-size: 20px;
    font-weight: 700;
}

.category-card__text {
    margin-top: 10px;
    color: var(--gray);
    font-size: 15px;
}

/* SPECIAL COLOR VARIANTS */
.category-card--green { border-top-color: var(--green); }
.category-card--pink { border-top-color: #ec4899; }
.category-card--yellow { border-top-color: var(--yellow); }

/* TARIFFS */
.tariff {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tariff:hover {
    transform: translateY(-6px);
}

.tariff__name {
    font-size: 32px;
    font-weight: 800;
}

.tariff__subtitle {
    margin-top: 12px;
    color: var(--gray);
    font-size: 16px;
}

.tariff__price {
    margin-top: 28px;
    font-size: 44px;
    font-weight: 800;
    color: var(--green);
}

.tariff__note {
    font-size: 13px;
    color: var(--gray);
    margin-left: 8px;
}

.tariff__features {
    margin-top: 24px;
    list-style: none;
    display: grid;
    margin-bottom: 20px;
    gap: 16px;
}

.tariff__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.tariff__features li svg {
    width: 18px;
    height: 18px;
    fill: var(--green);
}

/* TARIFF — MAIN */
.tariff--main {
    border: 4px solid var(--green);
    transform: scale(1.05);
}

.tariff--main:hover {
    transform: scale(1.05) translateY(-6px);
}

/* TARIFF BUTTON */
.tariff__btn {
    margin-top: auto;
    padding: 15px;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.tariff__btn:hover {
    background: var(--green-dark);
}

/* VARIANT — GRAY BUTTON */
.tariff__btn--gray {
    background: #374151;
}

.tariff__btn--gray:hover {
    background: #1f2937;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.portfolio-info p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
}
.footer__logo-container{
    width: 50%;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-4 { grid-template-columns: 1fr; }
}

.category-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    transition:
        transform 0.35s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.35s ease,
        background 0.35s ease;
    will-change: transform;
}

/* Ховер / фокус */
.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    background: linear-gradient(
        180deg,
        rgba(254,165,0,0.06),
        rgba(0,0,0,0)
    );
}

/* ИКОНКА */
.category-card__icon img {
    width: 56px;
    height: 56px;
    transition:
        transform 0.4s cubic-bezier(.22,.61,.36,1),
        filter 0.3s ease;
}

/* Анимация иконки */
.category-card:hover .category-card__icon img {
    transform: scale(1.15) rotate(-4deg);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

/* ЗАГОЛОВОК */
.category-card__title {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Подсветка заголовка */
.category-card:hover .category-card__title {
    color: #fea500;
}

/* ТЕКСТ */
.category-card__text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: #666;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__text {
    color: #333;
}
.btn-more {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-more:hover {
    background: #047857;
}
.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.footer__social-link svg {
    fill: #cfd6dd;
    transition: fill .25s ease;
}

/* Hover – общий */
.footer__social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* Telegram */
.footer__social-link--telegram:hover {
    background: #2AABEE;
}
.footer__social-link--telegram:hover svg {
    fill: #fff;
}

/* VK */
.footer__social-link--vk:hover {
    background: #4C75A3;
}
.footer__social-link--vk:hover svg {
    fill: #fff;
}

/* WhatsApp */
.footer__social-link--whatsapp:hover {
    background: #25D366;
}
.footer__social-link--whatsapp:hover svg {
    fill: #fff;
}

.tg-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.tg-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.tg-carousel-item {
    min-width: 32%;
    margin-right: 2%;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.tg-carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.tg-project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tg-project-title {
    padding: 14px 18px;
    font-weight: 700;
    font-size: 18px;
    background: #fff;
}

.tg-carousel-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* Навигация */
.tg-carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--green);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s ease;
}

.tg-carousel-btn:hover {
    background: #047857;
}

.tg-prev { left: 10px; }
.tg-next { right: 10px; }

/* MOBILE */
@media (max-width: 768px) {
    .tg-carousel-item {
        min-width: 70%;
        margin-right: 5%;
    }

    .tg-carousel-btn {
        font-size: 26px;
        width: 38px;
        height: 38px;
    }



/* ЗАГОЛОВОК */
.category-card__title {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}


/* ТЕКСТ */
.category-card__text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    transition: color 0.3s ease;
}


}
.tg-carousel-track {
    display: flex;
    cursor: grab;
    will-change: transform;
}

.tg-carousel-track.grabbing {
    cursor: grabbing;
}
/* базовый стиль */
.card-block {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px;
    text-align: left;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* иконка */
.card-icon img {
    width: 48px;
    height: 48px;
    transition: transform .35s ease;
}

/* hover-анимации */
.card-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

/* масштаб иконки при наведении */
.card-block:hover .card-icon img {
    transform: scale(1.12);
}

/* легкая подсветка вокруг карточки */
.card-block:hover::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(rgba(16,185,129,0.20), transparent 70%);
    opacity: 0;
    animation: pulseGlow .6s forwards;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

/* текстовое появление */
.card-block h3,
.card-block p {
    transition: transform .35s ease, opacity .35s ease;
}

.card-block:hover h3 {
    transform: translateX(4px);
}

.card-block:hover p {
    transform: translateX(6px);
    opacity: 0.9;
}
/* TESTIMONIALS (FLIP CARDS) */
.flip-container {
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 320px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.flip-card.rotate {
    transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card__front {
    background: var(--white);
}

.flip-card__back {
    background: #f9fafb;
    transform: rotateY(180deg);
}

.flip-card__logo {
    width: 80px;
    height: 80px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card__logo svg {
    width: 40px;
    height: 40px;
}

.flip-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
}

.flip-card__subtitle {
    font-size: 14px;
    color: var(--gray);
}

.flip-card__review {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

/* PORTFOLIO PROJECT BLOCK */
.project {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.project:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.project__image {
    width: 100%;
    height: 180px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project__info {
    padding: 18px;
}

.project__name {
    font-size: 18px;
    font-weight: 700;
}

.project__text {
    font-size: 14px;
    color: var(--gray);
    margin-top: 6px;
}
/* ============================================================
   CONTACT FORM — BOX SHADOW, INPUTS, VALIDATION STYLES
   ============================================================ */

.form-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-box legend {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.form-box label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    background: var(--white);
    font-size: 16px;
    transition: border var(--transition);
    margin: 10px 0;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--green);
    outline: none;
}

.form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.form-box button {
    margin-top: 16px;
}

/* FORM MESSAGE */
.form-message {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    display: none;
}

/* RECAPTCHA PLACEHOLDER */
.recaptcha-box {
    background: #e5e7eb;
    border-radius: var(--radius);
    height: 92px;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0 20px;
}

/* ============================================================
   ANIMATED ELEMENTS ON SCROLL (INTERSECTION OBSERVER)
   ============================================================ */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.7s ease-out;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.7s ease-out;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Small */
.animate-sm {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease-out;
}

.animate-sm.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   HARDWARE STORE — PRODUCT CARDS
   ============================================================ */

.store-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.product {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product:hover {
    transform: translateY(-6px);
}

.product__image {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__body {
    padding: 20px;
}

.product__title {
    font-size: 18px;
    font-weight: 700;
}

.product__price {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
}

.product__btn {
    margin-top: 14px;
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--green);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.product__btn:hover {
    background: var(--green-dark);
}

/* ============================================================
   RETURN TICKETS PAGE (СТРАНИЦА ВОЗВРАТА)
   ============================================================ */

.return-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.return-box__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.return-box input {
    margin-bottom: 16px;
}

.return-box button {
    margin-top: 10px;
}

/* RETURN INFO */
.return-info {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    background: #fdf6b2;
    color: #92400e;
    font-size: 14px;
}

/* ============================================================
   AФИША (POSTER / EVENTS LISTING)
   ============================================================ */

.poster-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.poster-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.poster-card:hover {
    transform: translateY(-6px);
}

.poster-card__image {
    height: 240px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-card__body {
    padding: 22px;
}

.poster-card__title {
    font-size: 20px;
    font-weight: 700;
}

.poster-card__date {
    margin-top: 6px;
    font-size: 14px;
    color: var(--gray);
}

.poster-card__btn {
    margin-top: 14px;
    background: var(--blue);
    color: var(--white);
    padding: 12px;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 700;
}

.poster-card__btn:hover {
    background: var(--blue-dark);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--gray);
}

.breadcrumbs a {
    color: var(--blue);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ============================================================
   FORMS ERRORS / SUCCESS
   ============================================================ */

.input-error {
    border-color: #dc2626 !important;
}

.error-text {
    color: #dc2626;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.success-box {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 14px;
    color: #065f46;
    margin-top: 14px;
}

/* ============================================================
   CONTACT CTA BLOCK (AFTER PORTFOLIO)
   ============================================================ */

.cta-box {
    background: var(--green);
    color: var(--white);
    padding: 80px 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 80px;
}

.cta-box__title {
    font-size: 40px;
    font-weight: 800;
}

.cta-box__subtitle {
    font-size: 20px;
    margin-top: 10px;
    color: #d1fae5;
}

.cta-box__btn {
    margin-top: 28px;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    background: var(--white);
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-box__btn:hover {
    background: #f3f4f6;
}

/* ============================================================
   PORTFOLIO GRID 4 COLUMNS
   ============================================================ */

.portfolio-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-6px);
}

.portfolio-item__img {
    height: 180px;
    background: #e5e7eb;
}

.portfolio-item__body {
    padding: 20px;
}

.portfolio-item__title {
    font-size: 18px;
    font-weight: 700;
}

.portfolio-item__text {
    margin-top: 6px;
    font-size: 14px;
    color: var(--gray);
}

/* ============================================================
   SECTION TITLES WITH SUBTITLE
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__title {
    font-size: 42px;
    font-weight: 800;
}

.section-header__subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 10px;
}
/* ============================================================
   MODALS (POP-UP WINDOWS)
   ============================================================ */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__content {
    background: var(--white);
    padding: 40px;
    width: 90%;
    max-width: 520px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    animation: modal-in 0.35s ease;
}

@keyframes modal-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
}

/* ============================================================
   TABS COMPONENT
   ============================================================ */

.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.tab {
    padding: 12px 24px;
    border-radius: var(--radius);
    background: #e5e7eb;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.tab:hover {
    background: #d1d5db;
}

.tab.active {
    background: var(--green);
    color: var(--white);
}

/* TAB CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion {
    margin-top: 20px;
}

.accordion__item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.accordion__header {
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.accordion__header::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    transition: 0.2s ease;
}

.accordion__item.active .accordion__header::after {
    content: "-";
}

.accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: 0.3s ease;
    padding: 0 18px;
}

.accordion__content-inner {
    padding: 16px 0;
    font-size: 15px;
    color: var(--gray);
}

/* ============================================================
   TABLE STYLES — PRICE LIST, HARDWARE SPECS
   ============================================================ */

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table thead {
    background: #f3f4f6;
}

.table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #d1d5db;
}

.table td {
    padding: 14px;
    font-size: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.table tr:hover td {
    background: #f9fafb;
}

/* ============================================================
   BADGES (SMALL UI LABELS)
   ============================================================ */

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge--green {
    background: rgba(5,150,105,0.15);
    color: var(--green);
}

.badge--blue {
    background: rgba(59,130,246,0.15);
    color: var(--blue);
}

.badge--yellow {
    background: rgba(234,179,8,0.15);
    color: var(--yellow);
}

.badge--pink {
    background: rgba(236,72,153,0.15);
    color: #ec4899;
}

/* ============================================================
   ICON INLINE STYLES
   ============================================================ */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   BANNERS / WIDE INFO BLOCKS
   ============================================================ */

.banner {
    background: var(--blue);
    padding: 60px 40px;
    color: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.banner__title {
    font-size: 40px;
    font-weight: 800;
}

.banner__subtitle {
    font-size: 20px;
    color: #dbeafe;
    margin-top: 10px;
}

/* ============================================================
   CONTACT INFO PANEL
   ============================================================ */

.info-panel {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-panel__item {
    flex: 1;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-panel__item:hover {
    transform: translateY(-4px);
}

.info-panel__icon svg {
    width: 36px;
    height: 36px;
    fill: var(--green);
    margin-bottom: 10px;
}

.info-panel__title {
    font-size: 18px;
    font-weight: 700;
}

.info-panel__text {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================================
   CTA WITH IMAGE LEFT
   ============================================================ */

.cta-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cta-image__content {
    flex: 1;
}

.cta-image__title {
    font-size: 40px;
    font-weight: 800;
}

.cta-image__subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 10px;
}

.cta-image__btn {
    margin-top: 24px;
    display: inline-block;
    padding: 14px 30px;
    background: var(--green);
    color: var(--white);
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
}

/* ============================================================
   SIDEBAR (FOR BLOG / HELP CENTER)
   ============================================================ */

.sidebar {
    width: 260px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 20px;
}

.sidebar__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar__list {
    list-style: none;
}

.sidebar__item {
    margin-bottom: 12px;
}

.sidebar__link {
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.sidebar__link:hover {
    color: var(--green);
}

.sidebar__link.active {
    color: var(--green);
    font-weight: 700;
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */

.article {
    max-width: 760px;
    margin: 0 auto;
}

.article h1 {
    font-size: 42px;
    font-weight: 800;
}

.article h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
}

.article h3 {
    font-size: 24px;
    margin-top: 30px;
}

.article p {
    font-size: 18px;
    margin-top: 12px;
    line-height: 1.6;
}

.article img {
    margin: 24px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.article ul,
.article ol {
    margin-left: 22px;
    margin-top: 12px;
}

.article li {
    margin: 8px 0;
    font-size: 18px;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination__btn {
    padding: 10px 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    transition: var(--transition);
}

.pagination__btn:hover {
    background: #f3f4f6;
}

.pagination__btn.active {
    background: var(--green);
    color: var(--white);
}
/* ============================================================
   RESPONSIVE ADAPTATION
   ============================================================ */

/* ----------- 1200PX ----------- */
@media (max-width: 1200px) {

    .container {
        padding: 0 16px;
    }

    .grid--4,
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project__image {
        height: 160px;
    }
}

/* ----------- 992PX ----------- */
@media (max-width: 992px) {

    .nav--desktop {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .grid--3,
    .grid--4,
    .grid--2,
    .poster-grid,
    .store-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-image {
        flex-direction: column;
        text-align: center;
    }

    .info-panel {
        flex-direction: column;
    }
}

/* ----------- 768PX ----------- */
@media (max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .category-card {
        padding: 5px;
    }

    .statistic__title {
        font-size: 32px;
    }

    .cta-box__title {
        font-size: 34px;
    }

    .cta-box__subtitle {
        font-size: 18px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CONTACT FORM */
    .form-box {
        padding: 26px;
    }

    /* RETURN BOX */
    .return-box {
        padding: 26px;
    }
}

/* ----------- 540PX ----------- */
@media (max-width: 540px) {

    .header__inner {
        height: 62px;
    }

    .hero__title {
        font-size: 34px;
    }

    .grid--3,
    .grid--4,
    .grid--2,
    .poster-grid,
    .store-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .product__image,
    .poster-card__image {
        height: 190px;
    }

    .cta-image__title {
        font-size: 28px;
    }
}

/* ----------- 440PX ----------- */
@media (max-width: 440px) {

    .hero__title {
        font-size: 30px;
    }

    .btn-lg {
        font-size: 16px;
        padding: 14px 20px;
    }

    .card {
        padding: 20px;
    }

    .tariff {
        padding: 22px;
    }

    .tariff__name {
        font-size: 26px;
    }

    .tariff__price {
        font-size: 36px;
    }
}

/* ============================================================
   SPECIAL EFFECTS & DECOR
   ============================================================ */

/* GRADIENT BORDER CARD */
.gradient-border {
    position: relative;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.gradient-border .inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
}

/* SHINY HOVER EFFECT */
.shiny:hover {
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(0,0,0,0));
    transition: 0.4s ease;
}

/* SPINNER — LOADING */
.spinner {
    border: 4px solid #e5e7eb;
    border-top: 4px solid var(--green);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================================
   FLOATING CONTACT BUTTON (FIXED BUTTON)
   ============================================================ */

.floating-contact {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--green);
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 3500;
    transition: var(--transition);
}

.floating-contact:hover {
    background: var(--green-dark);
}

/* ============================================================
   CUSTOM CHECKBOX & RADIO
   ============================================================ */

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 14px;
}

.radio input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ============================================================
   TAGS & LABELS
   ============================================================ */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e5e7eb;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

.tag--green {
    background: rgba(5,150,105,0.1);
    color: var(--green);
}

.tag--blue {
    background: rgba(59,130,246,0.1);
    color: var(--blue);
}

.tag--yellow {
    background: rgba(234,179,8,0.1);
    color: var(--yellow);
}
/* ============================================================
   UTILITIES / HELPERS
   ============================================================ */

/* MARGINS */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }

/* PADDINGS */
.p-0 { padding: 0 !important; }
.p-10 { padding: 10px !important; }
.p-15 { padding: 15px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }

/* FLEX UTILS */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* WIDTH */
.w-100 { width: 100%; }
.w-auto { width: auto; }

/* TEXT ALIGN */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* FONT WEIGHTS */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* COLORS */
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }

/* BACKGROUNDS */
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-green { background: var(--green); }
.bg-blue { background: var(--blue); }
.bg-dark { background: #1f2937; }

/* RADIUS */
.round { border-radius: 50%; }
.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: 6px; }
.rounded-lg { border-radius: 20px; }

/* SHADOWS */
.shadow-sm { box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* DISPLAY */
.block { display: block; }
.hidden { display: none !important; }

/* ============================================================
   GRID HELPERS
   ============================================================ */

.grid-1 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* MOBILE GRID BREAKPOINTS */
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }



.hero__top-description {
    font-weight: 400;
    font-size: 22px;
    flex-wrap: wrap;
}

.section-header__title {
    font-size: 32px;
    font-weight: 800;
}



/* ============================================================
   ANIMATED ELEMENTS ON SCROLL (INTERSECTION OBSERVER)
   ============================================================ */

.card-block {
    padding: 10px;
}

.cards-animate{
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    font-size: 11px;

    grid-template-columns: repeat(3, 1fr) !important;
}

}

/* ============================================================
   SPACING BLOCKS (BIG SECTIONS)
   ============================================================ */

.space-50 { padding: 50px 0; }
.space-80 { padding: 80px 0; }
.space-120 { padding: 120px 0; }

/* ============================================================
   DIVIDERS
   ============================================================ */

.divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

.divider-green {
    width: 80px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin: 20px auto;
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 15px;
    margin: 10px 0;
}

.alert--green {
    background: #ecfdf5;
    border-left: 4px solid var(--green);
    color: #047857;
}

.alert--blue {
    background: #eff6ff;
    border-left: 4px solid var(--blue);
    color: #1e40af;
}

.alert--yellow {
    background: #fef9c3;
    border-left: 4px solid var(--yellow);
    color: #854d0e;
}

.alert--red {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

/* ============================================================
   TOOLTIP
   ============================================================ */

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip:hover::after {
    content: attr(data-tip);
    position: absolute;
    bottom: -38px;
    left: 0;
    background: #111827;
    color: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: var(--shadow);
    z-index: 10000;
}

/* ============================================================
   FULLSCREEN SECTIONS / HERO BIG
   ============================================================ */

.fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   NON-BREAKING SPACES AND FIXES
   ============================================================ */

.nowrap { white-space: nowrap; }
.overflow-hidden { overflow: hidden; }

/* FINISH FILE */
