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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Unbounded', Arial, sans-serif;
    background-color: #060606;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


::selection {
    background: rgba(80, 180, 80, 0.35);
    color: #fff;
}

::-moz-selection {
    background: rgba(80, 180, 80, 0.35);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

a img, .nav-tg img, .footer-social img {
    pointer-events: auto;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.nav-logo-img {
    height: 24px;
    width: auto;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo span {
    font-weight: 300;
    opacity: 0.5;
    margin-left: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.6;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-tg {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.nav-tg:hover {
    opacity: 1;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-links a {
    font-size: 24px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mobile-links a:hover {
    opacity: 1;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: #fff;
    color: #060606;
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    max-width: 100vw;
}

/* ==================== FLOATING MONEY ==================== */
.money-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.money-float img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(100, 200, 100, 0.3)) drop-shadow(0 0 60px rgba(80, 180, 80, 0.15));
}

.money-1 {
    width: 90px;
    top: 15%;
    left: 8%;
    animation: float1 6s ease-in-out infinite, tilt1 4s ease-in-out infinite;
    opacity: 0.7;
}

.money-2 {
    width: 70px;
    top: 25%;
    right: 10%;
    animation: float2 7s ease-in-out infinite, tilt2 5s ease-in-out infinite;
    opacity: 0.5;
}

.money-3 {
    width: 55px;
    bottom: 20%;
    left: 12%;
    animation: float1 8s ease-in-out infinite, tilt1 6s ease-in-out infinite;
    opacity: 0.4;
}

.money-4 {
    width: 80px;
    bottom: 25%;
    right: 7%;
    animation: float2 7.5s ease-in-out infinite, tilt2 4.5s ease-in-out infinite;
    opacity: 0.6;
}

.money-5 {
    width: 45px;
    top: 55%;
    left: 5%;
    animation: float1 9s ease-in-out infinite, tilt1 5.5s ease-in-out infinite;
    opacity: 0.35;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes tilt1 {
    0%, 100% { rotate: -8deg; }
    50% { rotate: 8deg; }
}

@keyframes tilt2 {
    0%, 100% { rotate: 6deg; }
    50% { rotate: -6deg; }
}

@media (max-width: 768px) {
    .money-1 { width: 60px; }
    .money-2 { width: 50px; }
    .money-3 { width: 40px; }
    .money-4 { width: 55px; }
    .money-5 { display: none; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.hero-title-accent {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-top {
    display: flex;
    align-items: baseline;
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.hero-stat-plus {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.4;
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 120px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.section-tag {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.3;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ==================== ABOUT ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.about-photo-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
}

.about-question {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.about-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.about-text p {
    opacity: 0.6;
    margin-bottom: 16px;
    font-size: 15px;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.7s cubic-bezier(0.25, 0, 0.15, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.25) 0%,
        transparent 12%,
        transparent 23%,
        rgba(255,255,255,0.2) 30%,
        transparent 42%,
        transparent 48%,
        rgba(255,255,255,0.25) 55%,
        transparent 67%,
        transparent 73%,
        rgba(255,255,255,0.2) 80%,
        transparent 92%,
        rgba(255,255,255,0.25) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0, 0.15, 1) 0s;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    transition-delay: 0.15s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition-delay: 0.15s;
}

.service-icon {
    opacity: 0.5;
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

/* ==================== PRICING ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.7s cubic-bezier(0.25, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    padding: 1px;
    background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.25) 0%,
        transparent 12%,
        transparent 23%,
        rgba(255,255,255,0.2) 30%,
        transparent 42%,
        transparent 48%,
        rgba(255,255,255,0.25) 55%,
        transparent 67%,
        transparent 73%,
        rgba(255,255,255,0.2) 80%,
        transparent 92%,
        rgba(255,255,255,0.25) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0, 0.15, 1) 0s;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 1;
    transition-delay: 0.15s;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition-delay: 0.15s;
}

.pricing-card-popular {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #060606;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.pricing-tag {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.5;
}

.pricing-desc {
    font-size: 14px;
    opacity: 0.4;
    margin-bottom: 32px;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-features li svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.pricing-feature-disabled {
    opacity: 0.25 !important;
}

/* ==================== REVIEWS ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.reviews-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.7s cubic-bezier(0.25, 0, 0.15, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.25) 0%,
        transparent 12%,
        transparent 23%,
        rgba(255,255,255,0.2) 30%,
        transparent 42%,
        transparent 48%,
        rgba(255,255,255,0.25) 55%,
        transparent 67%,
        transparent 73%,
        rgba(255,255,255,0.2) 80%,
        transparent 92%,
        rgba(255,255,255,0.25) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0, 0.15, 1) 0s;
    pointer-events: none;
}

.review-card:hover::before {
    opacity: 1;
    transition-delay: 0.15s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition-delay: 0.15s;
}

.review-stars {
    color: #fff;
    opacity: 0.3;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
}

.review-avatar-img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: auto;
    aspect-ratio: 1 / 1;
}

.review-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.review-role {
    display: block;
    font-size: 12px;
    opacity: 0.4;
    margin-top: 2px;
}

/* ==================== FAQ ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 24px;
    transition: opacity 0.2s;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0, 0.15, 1),
                padding 0.5s cubic-bezier(0.25, 0, 0.15, 1);
    overflow: hidden;
}

.faq-answer > p {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.5;
    line-height: 1.7;
}

/* ==================== CTA ==================== */
.section-cta {
    padding: 80px 0;
}

.cta-block {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
}

.cta-money {
    width: 100px;
    margin: 0 auto 24px;
    animation: float1 6s ease-in-out infinite, tilt2 5s ease-in-out infinite;
}

.cta-money img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(100, 200, 100, 0.3)) drop-shadow(0 0 60px rgba(80, 180, 80, 0.15));
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 40px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-desc {
    font-size: 12px;
    opacity: 0.3;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.25;
    text-align: center;
}

/* ==================== ANIMATIONS (scroll reveal) ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-tg {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 32px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-desc br {
        display: none;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-num, .hero-stat-plus {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .section {
        padding: 80px 0;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-block {
        padding: 48px 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-amount {
        font-size: 36px;
    }

    .service-card {
        padding: 32px 24px;
    }
}
