/* CSS Variables & Design System */
:root {
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-accent: #2563EB; /* Vibrant Blue */
    --color-accent-hover: #1D4ED8;
    --color-border: #E2E8F0;
    
    --font-sans: 'Inter', sans-serif;
    
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5.5rem;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34rem),
        radial-gradient(circle at 88% 8%, rgba(14, 165, 233, 0.08), transparent 28rem);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--color-accent);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-viber {
    background-color: #7360F2;
    color: white;
    box-shadow: 0 4px 14px rgba(115, 96, 242, 0.28);
}

.btn-viber:hover {
    background-color: #5F4BD8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 96, 242, 0.38);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-text-main);
    background-color: var(--color-bg-alt);
}

.btn-text {
    background: transparent;
    color: var(--color-text-main);
    padding: 0.875rem 1rem;
}

.btn-text span {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn-text:hover span {
    transform: translateY(4px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
    flex: 0 0 auto;
}

.logo-mark-text {
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.logo-click {
    position: absolute;
    right: -0.14rem;
    top: -0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: #60A5FA;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 4px 10px rgba(15, 23, 42, 0.16);
    transform: none;
}

.logo-click::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

@media (max-width: 640px) {
    .logo {
        gap: 0.5rem;
    }
    .logo-mark {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 10px;
    }
    .logo-text {
        font-size: 1.35rem;
    }
    .header .btn-outline {
        min-height: 2.5rem;
        padding: 0.62rem 1rem;
        font-size: 0.9rem;
        border-width: 1px;
    }
}

/* Hero Section */
.hero {
    padding-top: calc(80px + 4.5rem);
    padding-bottom: 3.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 80px 0 auto 0;
    height: 430px;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    mask-image: linear-gradient(to bottom, black, transparent);
    opacity: 0.65;
}

.hero-inner {
    max-width: 980px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0.875rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 700;
}

.hero-badge::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 940px;
    margin: 2rem auto 0;
}

.hero-stat {
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--color-text-main);
    font-size: 1rem;
    line-height: 1.2;
}

.hero-stat span {
    margin-top: 0.25rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }
    .hero-actions .btn {
        width: auto;
    }
    .hero-actions .btn-primary {
        min-width: min(18.5rem, 100%);
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hero {
        padding-top: calc(80px + 3rem);
        padding-bottom: 1.75rem;
    }
    .hero-title {
        font-size: 2.08rem;
        line-height: 1.08;
        margin-bottom: 0.95rem;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subtitle {
        max-width: 21rem;
        margin-bottom: 1.35rem;
        font-size: 1.02rem;
        line-height: 1.55;
    }
    .btn-text {
        padding: 0.45rem 1rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.625rem;
        margin-top: 0.9rem;
    }
    .hero-stat {
        padding: 0.75rem 0.7rem;
        border-radius: 12px;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    }
    .hero-stat strong {
        font-size: 0.9rem;
    }
    .hero-stat span {
        font-size: 0.78rem;
        line-height: 1.35;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }
}

/* Gallery Section */
.gallery {
    padding: 2.75rem 0 2.75rem;
    overflow: hidden;
    scroll-margin-top: 6.5rem;
}

.gallery-header {
    margin-bottom: 2rem;
}

.gallery-header .section-title {
    margin-bottom: 0;
    text-align: center;
}

.gallery-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2rem 0;
    cursor: grab;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll-container:active {
    cursor: grabbing;
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}

.gallery-marquee {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - (var(--space-lg) / 2))); }
}

.gallery-track {
    display: inline-flex;
    gap: var(--space-lg);
    padding: 0 max(var(--space-lg), calc((100vw - 1200px) / 2 + var(--space-lg)));
}

.gallery-item {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    user-select: none;
}

.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--color-bg-alt);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.75);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover .gallery-image-wrapper {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.24);
}

.gallery-image-wrapper picture,
.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
}

.gallery-image-wrapper picture {
    display: block;
}

.gallery-image-wrapper img {
    object-fit: cover;
    transition: transform 0.45s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.035);
}

.placeholder-img {
    width: 100%;
    height: 100%;
}
.placeholder-img.blue { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.placeholder-img.green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.gallery-caption {
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: color 0.2s ease;
}

.gallery-item:hover .gallery-caption {
    color: var(--color-accent);
}

@media (max-width: 640px) {
    .gallery {
        padding: 0.5rem 0 2.5rem;
    }
    .gallery-header {
        margin-bottom: 1rem;
    }
    .gallery-header .section-title {
        font-size: 2rem;
    }
    .gallery-track {
        gap: 1rem;
        padding: 0 var(--space-lg);
    }
    .gallery-item {
        flex-basis: min(78vw, 300px);
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Services */
.services {
    padding: 4rem 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.08), transparent 22rem),
        linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 1)),
        var(--color-bg-alt);
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.services-inner {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) 1.55fr;
    gap: 2.5rem;
    align-items: start;
}

.section-heading {
    position: sticky;
    top: 112px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-heading .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.section-lead {
    max-width: 400px;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    counter-reset: service;
}

.service-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        var(--color-bg);
    min-height: 238px;
    padding: 1.35rem 1.35rem 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 18px 35px rgba(15, 23, 42, 0.035);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.82);
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    column-gap: 1rem;
    align-content: start;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 4.35rem;
    bottom: 1.25rem;
    left: 2.75rem;
    width: 1px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.45), rgba(37, 99, 235, 0));
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -58% 42%;
    height: 145px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.25);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.94)),
        var(--color-bg);
}

.service-card:hover::after {
    opacity: 1;
    transform: translateY(-10px);
}

.service-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    background: #EFF6FF;
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(239, 246, 255, 0.9);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    grid-column: 2;
    align-self: center;
}

.service-desc {
    color: var(--color-text-muted);
    line-height: 1.65;
    grid-column: 2;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
    grid-column: 2;
}

.service-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 900px) {
    .services-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-heading {
        position: static;
        text-align: center;
    }
    .section-heading .section-title {
        text-align: center;
    }
    .section-lead {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 2.75rem 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
        grid-template-columns: 2.5rem 1fr;
        padding: 1.25rem;
    }
    .service-card::before {
        top: 4.1rem;
        left: 2.5rem;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding: 2.75rem 0;
    }
    .step-card {
        padding: 1rem 0;
    }
    .step-number {
        font-size: 3.25rem;
        margin-bottom: 0.25rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.step-card {
    position: relative;
    padding: 1.25rem;
    text-align: left;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(226, 232, 240, 0.78);
    background: rgba(255, 255, 255, 0.74);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-3px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-alt);
    line-height: 1;
    margin-bottom: 0.65rem;
    text-shadow: 1px 1px 0px #e2e8f0;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step-desc {
    color: var(--color-text-muted);
}

/* Pricing */
.pricing {
    padding: var(--space-xxl) 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header .section-title {
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-header .section-lead {
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 40rem),
                linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 2.5rem;
    }
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)), var(--color-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 18px 35px rgba(15, 23, 42, 0.035);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.82);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.25);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.94)), var(--color-bg);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.15);
    z-index: 2;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    border-color: var(--color-accent);
}

@media (max-width: 900px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .pricing-header {
        margin-bottom: 2rem;
    }
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    .package-amount {
        font-size: 2.4rem;
        margin-bottom: 0.25rem;
    }
    .package-period {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .package-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        min-height: auto;
    }
    .package-features {
        margin-bottom: 1.25rem;
    }
    .package-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    .package-name {
        font-size: 1.15rem;
        margin-bottom: 0.25rem;
    }
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.package-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.package-amount {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--color-accent);
}

.package-amount span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-left: 0.35rem;
}

.package-amount .price-prefix {
    display: inline-block;
    margin-right: 0.45rem;
    margin-left: 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    font-weight: 800;
    vertical-align: middle;
}

.package-period {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.55rem 0.85rem;
    margin-bottom: var(--space-lg);
}

.package-desc {
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
    min-height: 48px;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.package-features li {
    padding: 0.6rem 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.package-features li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 800;
    margin-right: 12px;
}

/* CTA Section */
.cta-section {
    padding: 3.75rem 0;
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.07)),
        var(--color-bg);
    padding: 3.5rem var(--space-lg);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-section {
        padding: 2.75rem 0;
    }
    .cta-inner {
        padding: 2.5rem 1.25rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: var(--space-md);
}

/* Legal Page */
.legal-page {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34rem),
        var(--color-bg);
}

.legal-main {
    padding: calc(80px + 4rem) 0 5rem;
}

.legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.legal-back {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

.legal-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.legal-text {
    white-space: pre-wrap;
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 640px) {
    .legal-main {
        padding: calc(80px + 2rem) 0 3rem;
    }
    .legal-document {
        padding: 1.5rem;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    .footer {
        padding: 2rem 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 640px) {
    h1, h2, h3, h4 {
        letter-spacing: 0;
    }
    .section-title {
        font-size: 1.66rem;
        line-height: 1.12;
        margin-bottom: 1.1rem;
    }
    .hero {
        padding-bottom: 1.75rem;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.08;
        margin-bottom: 0.85rem;
    }
    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    .gallery {
        padding-top: 1.1rem;
        padding-bottom: 2.5rem;
    }
    .gallery-header .section-title {
        font-size: 1.72rem;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }
    .services {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
    .section-heading .section-title {
        font-size: 1.72rem;
        margin-bottom: 0.75rem;
    }
    .section-lead {
        font-size: 0.98rem;
        line-height: 1.55;
    }
    .service-title {
        font-size: 1.14rem;
        line-height: 1.2;
        margin-bottom: 0.45rem;
    }
    .how-it-works {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }
    .steps-grid {
        gap: 0.75rem;
    }
    .step-card {
        display: grid;
        grid-template-columns: 3.1rem 1fr;
        gap: 0.8rem;
        align-items: start;
        padding: 0.95rem;
    }
    .step-number {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-row: 1 / span 2;
        width: 2.9rem;
        height: 2.9rem;
        margin-bottom: 0;
        border-radius: 50%;
        background: #EFF6FF;
        color: var(--color-accent);
        font-size: 0.95rem;
        text-shadow: none;
        box-shadow: 0 0 0 6px rgba(239, 246, 255, 0.65);
    }
    .step-title {
        grid-column: 2;
        font-size: 1.15rem;
        margin-bottom: 0.3rem;
    }
    .step-desc {
        grid-column: 2;
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .cta-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
    .cta-title {
        font-size: 1.66rem;
        line-height: 1.12;
        margin-bottom: 0.85rem;
    }
    .cta-text {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }
    .legal-title {
        font-size: 1.8rem;
        line-height: 1.12;
        margin-bottom: 1rem;
    }
}
