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

:root {
    --style-seed: 6824;
    --design-style: artistic;
    
    --primary-color: #4c1d95;
    --secondary-color: #6d28d9;
    --accent-color: #be185d;
    --highlight-color: #b45309;
    --primary-gradient: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #be185d 100%);
    --secondary-gradient: linear-gradient(135deg, #b45309 0%, #c2410c 50%, #dc2626 100%);
    --soft-gradient: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    --artistic-gradient: linear-gradient(135deg, rgba(76, 29, 149, 0.15) 0%, rgba(109, 40, 217, 0.15) 50%, rgba(190, 24, 93, 0.15) 100%);
    --text-dark: #f8fafc;
    --text-medium: #cbd5e1;
    --text-light: #94a3b8;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --bg-cream: #0a0e1a;
    --shadow-soft: 0 4px 24px rgba(76, 29, 149, 0.3);
    --shadow-medium: 0 8px 40px rgba(76, 29, 149, 0.4);
    --shadow-strong: 0 16px 64px rgba(76, 29, 149, 0.5);
    --shadow-artistic: 0 4px 20px rgba(190, 24, 93, 0.4);
    --border-radius: 24px;
    --border-radius-small: 16px;
    --border-radius-large: 32px;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --spacing-xs: 24px;
    --spacing-sm: 48px;
    --spacing-md: 72px;
    --spacing-lg: 96px;
    --spacing-xl: 120px;
    --animation-duration: 0.8s;
    --animation-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

@keyframes elegantPulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.12); 
    }
    50% { 
        box-shadow: 0 8px 32px rgba(139, 115, 85, 0.18); 
    }
}

@keyframes shimmerElegant {
    0% {
        background-position: -800px 0;
    }
    100% {
        background-position: 800px 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 29, 149, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(76, 29, 149, 0.6), 0 0 60px rgba(109, 40, 217, 0.4);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(76, 29, 149, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(76, 29, 149, 0.8), 0 0 30px rgba(109, 40, 217, 0.6);
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

header {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 29, 149, 0.3);
    animation: slideInLeft 0.6s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #be185d 60%, #4c1d95 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

nav li {
    animation: fadeIn 0.6s ease-out backwards;
}

nav li:nth-child(1) { animation-delay: 0.1s; }
nav li:nth-child(2) { animation-delay: 0.2s; }
nav li:nth-child(3) { animation-delay: 0.3s; }
nav li:nth-child(4) { animation-delay: 0.4s; }
nav li:nth-child(5) { animation-delay: 0.5s; }

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.2px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 12px;
    border-radius: var(--border-radius-small);
    display: inline-block;
}

nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    border-radius: var(--border-radius-small);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::before {
    opacity: 0.25;
}

nav a:hover::after {
    width: 80%;
}

nav a:hover {
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    animation: bounce 0.6s ease;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    min-width: 52px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
    position: relative;
}

.burger-menu:hover span {
    background: var(--secondary-color);
    animation: pulse 0.6s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-color);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent-color);
}

.hero {
    padding: var(--spacing-xl) 0;
    background: var(--artistic-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    animation: floatElegant 20s ease-in-out infinite;
}

.hero::before {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.hero::after {
    width: 450px;
    height: 450px;
    background: var(--accent-color);
    bottom: -120px;
    right: -80px;
    animation-delay: 2s;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #be185d 60%, #4c1d95 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeUp var(--animation-duration) var(--animation-easing) forwards, gradientShift 8s ease infinite;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp var(--animation-duration) var(--animation-easing) 0.2s forwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #be185d 100%);
    background-size: 200% 200%;
    color: var(--bg-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    margin: 8px;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 6s ease infinite;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
    background-size: 200% 200%;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    animation: gradientShift 4s ease infinite;
    pointer-events: none;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-medium);
    animation: bounce 0.6s ease, glow 2s ease-in-out infinite;
    color: var(--bg-white);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
    animation: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.hero .btn {
    opacity: 0;
    animation: fadeUp var(--animation-duration) var(--animation-easing) 0.4s forwards;
}

.hero .btn + .btn {
    animation-delay: 0.5s;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary::before {
    background: var(--primary-gradient);
}

.btn-secondary:hover {
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: var(--shadow-soft);
}

section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #be185d 60%, #4c1d95 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: gradientShift 6s ease infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.375rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid rgba(76, 29, 149, 0.2);
    transform: translateY(0);
    will-change: transform, box-shadow;
    position: relative;
    animation: scaleIn 0.6s ease-out backwards;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
    animation: pulse 1s ease-in-out infinite;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(76, 29, 149, 0.2);
    transition: var(--transition-fast);
    will-change: transform, box-shadow;
    transform: translateY(0);
    animation: scaleIn 0.7s ease-out backwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto var(--spacing-sm);
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    font-size: 2.75rem;
    animation: floatElegant 6s ease-in-out infinite;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
}

.feature-icon i {
    color: var(--bg-white);
    font-size: 2.75rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.feature-item:hover .feature-icon {
    animation-play-state: paused;
    transform: scale(1.15);
    box-shadow: var(--shadow-artistic);
    animation: glow 2s ease-in-out infinite;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
    animation: textGlow 2s ease-in-out infinite;
}

.feature-item:nth-child(1):hover .feature-icon i {
    animation: iconSpin 1s ease-in-out;
}

.feature-item:nth-child(2):hover .feature-icon i {
    animation: rotate 2s linear infinite;
}

.feature-item:nth-child(3):hover .feature-icon i {
    animation: pulse 1.5s ease-in-out infinite;
}

.feature-item:nth-child(4):hover .feature-icon i {
    animation: bounce 1s ease-in-out infinite;
}

.feature-item h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    animation: scaleIn 0.8s ease-out backwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1;
    mix-blend-mode: overlay;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    animation: glow 2s ease-in-out infinite;
}

.gallery-item:hover::before {
    opacity: 0.2;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2), transparent 60%);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.contact-form {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(76, 29, 149, 0.3);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
    z-index: 1;
}

.contact-form:hover {
    box-shadow: var(--shadow-medium);
    animation: pulse 2s ease-in-out infinite;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
}

.form-group {
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    letter-spacing: -0.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(76, 29, 149, 0.3);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--bg-light);
    color: var(--text-dark);
    position: relative;
    z-index: 3;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(76, 29, 149, 0.2), 0 4px 20px rgba(76, 29, 149, 0.3);
    transform: translateY(-3px) scale(1.01);
    background: var(--bg-white);
    animation: glow 2s ease-in-out infinite;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 8px;
    cursor: pointer;
    width: 22px;
    height: 22px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.7;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    font-weight: 600;
}

.checkbox-group a:hover {
    border-bottom-color: var(--primary-color);
}

.checkbox-group a:hover {
    text-decoration: underline;
}

footer {
    background: var(--primary-gradient);
    color: var(--bg-white);
    padding: 32px 0 24px;
    margin-top: var(--spacing-xl);
    box-shadow: 0 -8px 40px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--bg-white);
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.content-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

.content-page h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.content-page h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.content-page p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.125rem;
}

.content-page ul,
.content-page ol {
    margin-left: 20px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.125rem;
}

.content-page li {
    margin-bottom: 16px;
}

.content-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.thankyou-page {
    text-align: center;
    padding: var(--spacing-xl) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.thankyou-content p {
    font-size: 1.375rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-weight: 500;
}

.about-preview,
.process {
    background: var(--bg-light);
    border-top: 1px solid rgba(76, 29, 149, 0.2);
    border-bottom: 1px solid rgba(76, 29, 149, 0.2);
}

.cta {
    background: var(--artistic-gradient);
}

.cta-content {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(76, 29, 149, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .header-content {
        gap: 12px;
    }

    .logo {
        font-size: 1.25rem;
        max-width: calc(100% - 64px);
    }

    .contact-form {
        padding: var(--spacing-md) 10px;
    }

    nav ul {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid rgba(76, 29, 149, 0.2);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-medium);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        gap: var(--spacing-sm);
    }

    nav ul.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .cta-content .btn {
        padding: 14px 32px;
        font-size: 1rem;
        max-width: 280px;
        width: auto;
        display: inline-block;
    }

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

    section {
        padding: var(--spacing-md) 0;
    }

    .hero {
        padding: var(--spacing-md) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    :root {
        --spacing-md: 56px;
        --spacing-lg: 80px;
        --spacing-xl: 100px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xs: 20px;
        --spacing-sm: 32px;
        --spacing-md: 48px;
        --spacing-lg: 64px;
        --spacing-xl: 80px;
    }

    .container {
        padding: 0 var(--spacing-xs);
    }

    .header-content {
        gap: 8px;
    }

    .logo {
        font-size: 1rem;
        max-width: calc(100% - 60px);
    }

    .burger-menu {
        padding: 8px;
        min-width: 44px;
    }

    .contact-form {
        padding: var(--spacing-md) 10px;
    }

    .cta-content .btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
        max-width: 240px;
        width: auto;
        display: inline-block;
    }

    .btn {
        padding: 20px 40px;
        font-size: 1.0625rem;
        display: block;
        margin: 16px auto;
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        display: block;
    }

    body {
        font-size: 16px;
    }
}

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

