:root {
    --bg: #FAFAF8;
    --bg-alt: #F2F0EA;
    --primary: #7D6B56;
    --primary-dark: #5C4F3E;
    --accent: #B8A07A;
    --accent-light: #D4C4A8;
    --secondary: #6B8E7B;
    --secondary-light: #8BA99A;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.06);
    --border-light: rgba(0,0,0,0.04);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
    
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Animation */
.bg-animated {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.bg-orb--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-light), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-orb--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-light), transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.bg-orb--3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s var(--ease-out);
}

.header.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(125, 107, 86, 0.06);
}

.nav-arrow {
    transition: transform 0.2s ease;
}

.nav-item--parent:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s var(--ease-out);
}

.nav-item--parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-list > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-dropdown-list > li > a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-dropdown-item--parent {
    position: relative;
}

.nav-dropdown-sub {
    position: absolute;
    left: calc(100% + 8px);
    top: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.25s var(--ease-out);
}

.nav-dropdown-item--parent:hover .nav-dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 4px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.25s var(--ease-out);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    overflow-y: auto;
    padding: 90px 24px 40px;
}

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

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-toggle {
    padding: 16px;
    margin: -16px 0;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.mobile-nav-toggle.active {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
    background: var(--bg-alt);
    margin: 0 -24px;
    padding: 0 24px;
}

.mobile-nav-sub.active {
    max-height: 600px;
}

.mobile-nav-sub li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-sub a {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.mobile-nav-sub-title {
    display: block;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-sub--level3 {
    margin: 0;
    padding: 0 0 0 16px;
    background: transparent;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 600;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 14px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.25s var(--ease-out);
    cursor: pointer;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(125, 107, 86, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 107, 86, 0.4);
}

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

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

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(184, 160, 122, 0.1);
    border-radius: var(--radius-full);
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-symbol {
    display: flex;
    justify-content: center;
}

.hero-mandala {
    width: 180px;
    height: 180px;
    animation: mandala-float 12s ease-in-out infinite;
}

@keyframes mandala-float {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.02); }
}

.hero-text {
    text-align: center;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.15;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* About */
.about-grid {
    display: grid;
    gap: 60px;
}

.about-content {
    max-width: 640px;
    text-align: center;
}

.about-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-content p:last-child {
    margin-bottom: 0;
}

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

.feature-card {
    text-align: center;
    padding: 28px 20px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
}

.feature-icon svg {
    width: 44px;
    height: 44px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Practices */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.practice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.practice-icon {
    margin-bottom: 24px;
    color: var(--primary);
}

.practice-icon svg {
    width: 72px;
    height: 72px;
}

.practice-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.practice-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Master */
.about-master-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-master-visual {
    display: flex;
    justify-content: center;
}

.master-frame {
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-alt), var(--white));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.master-frame-svg {
    width: 180px;
    height: 220px;
    color: var(--primary);
}

.about-master-content {
    max-width: 560px;
}

.master-name {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.master-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.master-quote {
    margin-top: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-icon {
    margin-bottom: 20px;
    color: var(--secondary);
}

.article-icon svg {
    width: 44px;
    height: 44px;
}

.article-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s ease;
}

.article-card:hover .article-link {
    color: var(--accent);
}

/* Sessions */
.sessions-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.sessions-tab {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

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

.sessions-tab.active {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--white);
}

.sessions-panel {
    display: none;
}

.sessions-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.session-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.session-icon {
    margin-bottom: 24px;
    color: var(--primary);
}

.session-icon svg {
    width: 60px;
    height: 60px;
}

.session-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.session-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.session-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding: 6px 14px;
    background: rgba(184, 160, 122, 0.1);
    border-radius: var(--radius-full);
}

.sessions-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.sessions-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Contacts */
.contacts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.contacts-info {
    display: flex;
    justify-content: center;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.contact-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.contact-phone svg {
    color: var(--accent);
}

.contacts-messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.messenger-btn--tg {
    background: #0088cc;
    color: var(--white);
}

.messenger-btn--tg:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 136, 204, 0.3);
}

.messenger-btn--wa {
    background: #25D366;
    color: var(--white);
}

.messenger-btn--wa:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 160, 122, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.footer-logo svg {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (min-width: 1024px) {
    .burger { display: none !important; }
    .mobile-menu { display: none; }
    .nav { display: block; }
    
    .section { padding: 120px 0; }
    .section-title { font-size: 3rem; }
    
    .hero-main {
        grid-template-columns: auto 1fr;
        text-align: left;
    }
    .hero-symbol { justify-content: flex-start; }
    .hero-text { text-align: left; }
    .hero-actions { justify-content: flex-start; }
    .hero-title-main { font-size: 3.5rem; }
    .hero-slogan { font-size: 1.8rem; }
    .hero-desc { margin: 0 0 36px; }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .about-content { text-align: left; margin: 0; }
    .about-features { margin: 0; }
    
    .about-master-grid {
        grid-template-columns: auto 1fr;
    }
    .about-master-visual { order: 1; }
    .about-master-content { order: 2; }
    
    .contacts-content {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .logo-text { display: none; }
    .nav { display: none; }
    .burger { display: flex; }
    
    .section { padding: 80px 0; }
    .section-title { font-size: 2.2rem; }
    .section-header { margin-bottom: 44px; }
    
    .hero-title-main { font-size: 2.2rem; }
    .hero-slogan { font-size: 1.35rem; }
    .hero-scroll { display: none; }
    
    .practices-grid,
    .benefits-grid,
    .articles-grid,
    .sessions-grid,
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
