/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ff3e00;
    --color-primary-light: #ff6b3d;
    --color-primary-dark: #cc3100;
    --color-primary-soft: #fff0eb;
    --color-accent: #88a078;
    --color-accent-light: #a4b896;
    --color-accent-dark: #6b8060;
    --color-accent-soft: #eef2ea;
    --color-yellow: #fccc5e;
    --color-yellow-soft: #fef5dc;
    --color-peach: #fdd188;
    --color-peach-soft: #fef0dd;
    --color-dark: #333333;
    --color-dark-soft: #555555;
    --color-light: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-bg-alt2: #fafafa;
    --color-border: #e6e6e6;
    --color-text-muted: #6b6b6b;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-width: 1200px;
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 32px rgba(255, 62, 0, 0.25);
    --shadow-accent: 0 8px 32px rgba(136, 160, 120, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   SKIP LINK (accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 3000;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: white;
}

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
}

.btn--primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--small {
    padding: 7px 14px;
    font-size: 13px;
}

.btn--large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    max-height: 40px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.header__link {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.header__link:hover {
    color: var(--color-primary);
}

.header__link[aria-current="page"] {
    color: var(--color-primary);
    font-weight: 600;
}

.header__arrow {
    font-size: 10px;
    opacity: 0.5;
}

.header__dropdown {
    position: relative;
}

.header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}

.header__dropdown:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__sublink {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--color-dark);
    border-radius: 6px;
    transition: all var(--transition);
}

.header__sublink:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--color-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header__social:hover {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 3px;
}

.header__burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
}

.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1100;
}

.mobile-menu__panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    padding: 80px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1101;
    overflow-y: auto;
}

.mobile-menu--open .mobile-menu__overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu--open .mobile-menu__panel {
    right: 0;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.mobile-menu__close span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
}

.mobile-menu__close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu__close span:nth-child(2) {
    opacity: 0;
}

.mobile-menu__close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-menu__link {
    display: block;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.mobile-menu__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 80px;
    overflow: hidden;
}

.hero__bg-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 97, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__roles {
    margin-bottom: 28px;
}

.hero__roles p {
    font-size: 15px;
    color: var(--color-dark-soft);
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.hero__roles p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.hero__roles strong {
    font-weight: 700;
    color: var(--color-primary);
}

.hero__tagline {
    padding: 24px;
    background: var(--color-primary-soft);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 32px;
}

.hero__tagline p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-dark);
}

.hero__tagline strong {
    color: var(--color-primary);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 97, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hero__quote {
    position: absolute;
    bottom: -32px;
    left: -32px;
    max-width: 340px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.hero__quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.hero__quote span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.hero__scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.hero__scroll-hint span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-hint span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollHint 1.5s infinite;
}

@keyframes scrollHint {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header__label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-soft);
}

.stat-card__number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-card__suffix {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark-soft);
    margin-bottom: 12px;
}

.stat-card__text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-card--highlight {
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, white 100%);
    border-color: var(--color-primary);
}

.service-card__badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--color-bg-alt);
    color: var(--color-dark-soft);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.service-card__badge--accent {
    background: var(--color-primary);
    color: white;
}

.service-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 15px;
    color: var(--color-dark-soft);
    margin-bottom: 20px;
    flex: 1;
}

.service-card__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition);
}

.service-card__link:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   CERTIFICATES
   ============================================ */
.certificates {
    padding: 100px 0;
}

.certificates__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.cert-card__img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.cert-card__img img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}

.cert-card__img--placeholder {
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-bg-alt) 100%);
}

.cert-card__img--placeholder span {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}

.cert-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-card__body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cert-card__body p {
    font-size: 14px;
    color: var(--color-dark-soft);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.cert-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    align-self: flex-start;
}

.cert-card__link:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.reviews__slider {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    padding: 0 16px;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-card__header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-card__header span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.review-card__content {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-height: 500px;
    overflow-y: auto;
    line-height: 1.7;
}

.review-card__content p {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-dark);
}

.review-card__content p strong {
    color: var(--color-primary);
}

.review-card__content ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style: disc;
}

.review-card__content ul li {
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--color-dark);
}

.review-card__content::-webkit-scrollbar {
    width: 6px;
}

.review-card__content::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
    border-radius: 3px;
}

.review-card__content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-dark);
    transition: all var(--transition);
}

.reviews__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.reviews__dot--active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
}

.cta__inner {
    text-align: center;
    padding: 64px 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta__inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta__inner h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta__inner p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.cta__inner .btn--primary {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.cta__inner .btn--primary:hover {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

.cta__inner .btn--outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.cta__inner .btn--outline:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.cta__info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta__info-item {
    text-align: center;
}

.cta__info-label {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.cta__info-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */
.contacts {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 32px;
    background: var(--color-dark);
    color: #cccccc;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo img {
    max-height: 48px;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    max-width: 320px;
}

.footer__col h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer__contacts {
    margin-bottom: 16px;
}

.footer__contacts li {
    margin-bottom: 10px;
}

.footer__contacts a {
    font-size: 15px;
    color: #ccc;
}

.footer__contacts a:hover {
    color: var(--color-primary);
}

.footer__link {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    font-size: 15px;
    color: #ccc;
}

.footer__menu a:hover {
    color: var(--color-primary);
}

.footer__col p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer__col .btn--outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer__col .btn--outline:hover {
    background: var(--color-primary);
    color: white;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p,
.footer__bottom a {
    font-size: 13px;
    color: #777;
}

.footer__bottom a:hover {
    color: var(--color-primary);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal--open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__content--wide {
    max-width: 640px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--color-bg-alt);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}

.modal__close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.modal__content h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    padding-right: 32px;
}

.modal__list {
    margin-bottom: 24px;
}

.modal__list p {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.modal__questions {
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.modal__questions p {
    font-size: 14px;
    margin-bottom: 12px;
}

.modal__questions ol {
    padding-left: 20px;
}

.modal__questions ol li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-dark-soft);
}

.modal__pricing {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--color-primary-soft);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.modal__pricing p {
    font-size: 14px;
}

.modal__pricing strong {
    color: var(--color-primary);
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal__form input,
.modal__form textarea,
.modal__form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--color-dark);
    background: white;
    transition: border-color var(--transition);
}

.modal__form input:focus,
.modal__form textarea:focus,
.modal__form select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal__form textarea {
    resize: vertical;
    font-family: var(--font-family);
}

.modal__select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal__select-wrapper label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-soft);
}

.modal__select {
    cursor: pointer;
}

.modal__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.modal__consent input {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal__consent a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ============================================
   FLOATING TELEGRAM
   ============================================ */
.floating-tg {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-primary);
    z-index: 900;
    transition: all var(--transition);
    animation: floatPulse 2s infinite;
    will-change: transform;
}

.floating-tg:hover {
    transform: scale(1.1);
    background: var(--color-primary-dark);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 97, 0, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255, 97, 0, 0); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */
.subpage-hero {
    padding: calc(var(--header-height) + 80px) 0 60px;
    background: var(--color-bg-alt);
}

.subpage-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subpage-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.subpage-hero h1 span {
    color: var(--color-primary);
}

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 40px 0;
    text-align: left;
}

.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.checklist__item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.checklist__item span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark);
}

.info-block {
    padding: 100px 0;
}

.info-block__inner {
    max-width: 800px;
    margin: 0 auto;
}

.info-block h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.info-block h2 span {
    color: var(--color-primary);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark-soft);
    margin-bottom: 16px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.process-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step__content p {
    font-size: 15px;
    color: var(--color-dark-soft);
    margin: 0;
}

.pricing-block {
    text-align: center;
    padding: 48px;
    background: var(--color-primary-soft);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.pricing-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-block p {
    font-size: 17px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.pricing-block .btn {
    margin-top: 24px;
}

.quote-block {
    padding: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
    margin: 48px 0;
}

.quote-block p {
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.service-item {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-item__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-item ul {
    margin: 16px 0;
    padding-left: 20px;
}

.service-item ul li {
    font-size: 14px;
    color: var(--color-dark-soft);
    margin-bottom: 8px;
    list-style: disc;
}

.service-item .btn {
    margin-top: 16px;
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.support-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.5;
}

.support-list__item::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
    PULL QUOTE (метод, зелёная линия слева)
    ============================================ */
.pull-quote {
    border-left: 4px solid var(--color-accent);
    padding: 32px 40px;
    margin: 48px 0;
    background: var(--color-accent-soft);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-dark);
    margin: 0;
}

/* ============================================
    WHO CARDS (С чем ко мне)
    ============================================ */
.who-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.who-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.who-card__label {
    display: inline-block;
    padding: 5px 14px;
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.who-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--color-dark);
}

.who-card p {
    font-size: 15px;
    color: var(--color-dark-soft);
    line-height: 1.6;
    margin: 0;
}

.who-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.who-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 24px;
}

/* ============================================
    DIAG BLOCK (диагностическая встреча)
    ============================================ */
.diag-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.diag-block__badge {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 24px;
    background: var(--color-accent-soft);
    border-radius: 100px;
    margin-bottom: 32px;
}

.diag-block__badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-dark);
}

.diag-block__badge span:not(:last-child)::after {
    content: '·';
    margin-left: 16px;
    color: var(--color-accent);
}

.diag-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    margin: 32px 0;
}

.diag-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-dark);
}

.diag-list__item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ============================================
    PRINCIPLE CARDS (О подходе)
    ============================================ */
.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.principle-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: 12px;
}

.principle-card p {
    font-size: 15px;
    color: var(--color-dark-soft);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
    RESULT CARDS (Что меняется)
    ============================================ */
.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.result-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.result-card p {
    font-size: 15px;
    color: var(--color-dark-soft);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
    FORMAT CARDS (Форматы работы — коучинг)
    ============================================ */
.format-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.format-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.format-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.format-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
    line-height: 1.3;
}

.format-card p {
    font-size: 15px;
    color: var(--color-dark-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.format-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

/* ============================================
    PAYMENT CARDS (Оплата пакетов)
    ============================================ */
.payment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.payment-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.payment-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.payment-card__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.payment-card p {
    font-size: 14px;
    color: var(--color-dark-soft);
    line-height: 1.6;
    margin-bottom: 24px;
}

.payment-card__qr {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.payment-card__qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
    METHOD PAGE — текстовые блоки
    ============================================ */
.method-text {
    max-width: 760px;
    margin: 0 auto;
}

.method-text h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.method-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-dark-soft);
    margin-bottom: 20px;
}

.method-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--color-dark);
}

.method-text ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.method-text ul li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark-soft);
    margin-bottom: 16px;
}

.method-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ============================================
    BULLET LIST (универсальный)
    ============================================ */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.bullet-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    list-style: none;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ============================================
    BTN ROW (inline button groups)
    ============================================ */
.btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
    RESPONSIVE
    ============================================ */
@media (max-width: 1100px) {
    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .certificates__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-cards {
        grid-template-columns: 1fr 1fr;
    }

    .principles {
        grid-template-columns: repeat(3, 1fr);
    }

    .result-cards {
        grid-template-columns: 1fr 1fr;
    }

    .format-cards {
        grid-template-columns: 1fr 1fr;
    }

    .payment-cards {
        grid-template-columns: 1fr 1fr;
    }
}

/* Header switches to burger earlier — 7 menu items don't fit below 1000px */
@media (max-width: 1000px) {
    .header__nav {
        display: none;
    }

    .header__actions .btn {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__quote {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 24px;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .services-list,
    .support-list {
        grid-template-columns: 1fr;
    }

    .who-cards {
        grid-template-columns: 1fr;
    }

    .diag-list {
        grid-template-columns: 1fr;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .format-cards {
        grid-template-columns: 1fr;
    }

    .payment-cards {
        grid-template-columns: 1fr;
    }

    .pull-quote {
        padding: 24px 28px;
    }

    .pull-quote p {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    /* --- Grids: single column --- */
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .certificates__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    /* --- Section paddings: compact --- */
    .stats {
        padding: 48px 0;
    }

    .services,
    .work,
    .certificates,
    .reviews,
    .cta,
    .contacts,
    .info-block {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header__title {
        font-size: 26px;
    }

    /* --- Hero --- */
    .hero {
        padding: calc(var(--header-height) + 32px) 0 48px;
    }

    .hero__inner {
        gap: 32px;
    }

    .hero__title {
        font-size: 38px;
    }

    .hero__roles p {
        font-size: 14px;
    }

    .hero__tagline {
        padding: 18px;
    }

    .hero__tagline p {
        font-size: 15px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__image {
        max-width: 100%;
    }

    .hero__quote {
        padding: 18px;
    }

    .hero__quote p {
        font-size: 14px;
    }

    .hero__scroll-hint {
        margin-top: 32px;
    }

    /* --- Subpage hero --- */
    .subpage-hero {
        padding: calc(var(--header-height) + 32px) 0 32px;
    }

    .subpage-hero h1 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .subpage-hero h1 span {
        display: inline;
    }

    .subpage-hero__inner .btn--large {
        width: 100%;
    }

    /* --- Cards: tighter padding --- */
    .who-card,
    .principle-card,
    .result-card,
    .format-card,
    .payment-card,
    .service-card,
    .cert-card {
        padding: 20px;
    }

    .who-card h3,
    .principle-card h3,
    .result-card h3,
    .format-card h3 {
        font-size: 17px;
    }

    .who-card p,
    .principle-card p,
    .result-card p,
    .format-card p {
        font-size: 14px;
    }

    .who-cta p {
        font-size: 15px;
    }

    .who-cta .btn,
    .who-cta .btn--large {
        width: 100%;
    }

    /* --- Diag block --- */
    .diag-block__badge {
        flex-direction: column;
        gap: 6px;
        padding: 12px 20px;
    }

    .diag-block__badge span:not(:last-child)::after {
        display: none;
    }

    .diag-list__item {
        padding: 16px;
        font-size: 14px;
    }

    /* --- Pull quote --- */
    .pull-quote {
        padding: 20px 20px;
        margin: 32px 0;
    }

    .pull-quote p {
        font-size: 16px;
    }

    /* --- Method text --- */
    .method-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .method-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .method-text ul li,
    .bullet-list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
        padding-left: 24px;
    }

    /* --- Result card icon --- */
    .result-card__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* --- Payment card --- */
    .payment-card__price {
        font-size: 24px;
    }

    .payment-card__qr {
        width: 160px;
        height: 160px;
    }

    /* --- CTA --- */
    .cta__inner {
        padding: 32px 20px;
    }

    .cta__inner h2 {
        font-size: 24px;
    }

    .cta__inner p {
        font-size: 15px;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        width: 100%;
    }

    .cta__info {
        gap: 20px;
    }

    /* --- Stats --- */
    .stat-card {
        padding: 24px 16px;
    }

    .stat-card__number {
        font-size: 34px;
    }

    .stat-card__text {
        font-size: 12px;
    }

    /* --- Modal --- */
    .modal__content {
        padding: 28px 20px;
    }

    .modal__content h2 {
        font-size: 20px;
    }

    .modal__list p {
        font-size: 14px;
    }

    .modal__pricing {
        flex-direction: column;
        gap: 8px;
    }

    /* --- Floating TG --- */
    .floating-tg {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .scroll-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* --- Reviews --- */
    .review-card__content {
        padding: 20px 16px;
        max-height: 400px;
    }

    .review-card__content p {
        font-size: 14px;
    }

    .review-card__header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .review-card__avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .review-card__header h4 {
        font-size: 16px;
    }

    .reviews__btn {
        width: 40px;
        height: 40px;
    }

    /* --- Process steps --- */
    .process-step {
        padding: 20px;
        gap: 16px;
    }

    .process-step__number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .process-step__content h3 {
        font-size: 16px;
    }

    .process-step__content p {
        font-size: 14px;
    }

    /* --- Inline button rows in HTML --- */
    .diag-block .btn,
    .diag-block .btn--large,
    .btn-row .btn,
    .btn-row .btn--large {
        width: 100%;
    }

    .btn-row {
        flex-direction: column;
        gap: 12px;
    }

    /* --- Footer --- */
    .footer {
        padding: 48px 0 24px;
    }

    .footer__logo img {
        max-height: 36px;
    }

    .footer__tagline {
        font-size: 13px;
    }
}

/* ============================================
    EXTRA SMALL PHONES (≤400px)
    ============================================ */
@media (max-width: 400px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__roles p {
        font-size: 13px;
    }

    .hero__tagline p {
        font-size: 14px;
    }

    .section-header__title {
        font-size: 22px;
    }

    .subpage-hero h1 {
        font-size: 22px;
    }

    .method-text h2 {
        font-size: 20px;
    }

    .pull-quote p {
        font-size: 15px;
    }

    .cta__inner h2 {
        font-size: 20px;
    }

    .stat-card__number {
        font-size: 28px;
    }

    .payment-card__qr {
        width: 140px;
        height: 140px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn--large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .modal__content {
        padding: 24px 16px;
    }
}
