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

:root {
    --primary: #ff6b9d;
    --primary-dark: #c44569;
    --secondary: #2d3436;
    --accent: #fd79a8;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #b2bec3;
    --border-color: #e8e8e8;
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #fd79a8 100%);
    --gradient-accent: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    --shadow-lg: 0 20px 40px rgba(255, 107, 157, 0.15);
    --shadow-md: 0 10px 25px rgba(255, 107, 157, 0.1);
    --shadow-sm: 0 5px 15px rgba(255, 107, 157, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-prefix {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.deco-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation: float 5s ease-in-out infinite;
}

.deco-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: white;
    border-radius: 3px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.page-header {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-white);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.about-image {
    flex: 1;
}

.image-container svg {
    width: 100%;
    max-width: 450px;
}

.showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.showcase-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.showcase-card.featured {
    grid-column: span 2;
    display: flex;
}

.card-image {
    flex: 1;
}

.card-image svg {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.showcase-card.featured .card-image svg {
    min-height: 280px;
}

.card-info {
    padding: 30px;
}

.card-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.services {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonials {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-item.active {
    display: block;
}

.quote-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.cta {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .brand-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.footer-brand .brand-name {
    font-size: 22px;
    color: white;
}

.brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.works-filter {
    padding: 30px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 25px;
    background: var(--bg-light);
    border: none;
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: white;
}

.works-grid {
    padding: 50px 0;
    background: var(--bg-light);
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.work-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.work-card.featured {
    grid-column: span 2;
    display: flex;
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image svg {
    width: 100%;
    height: 250px;
    transition: transform 0.3s ease;
}

.work-card.featured .work-image svg {
    height: 300px;
}

.work-card:hover .work-image svg {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay svg {
    width: 60px;
    height: 60px;
}

.work-info {
    padding: 25px;
}

.work-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.work-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.work-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.work-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.works-stats {
    padding: 50px 0;
    background: var(--bg-white);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.services-intro {
    padding: 60px 0;
    background: var(--bg-white);
}

.intro-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.intro-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-card .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.services-list {
    padding: 60px 0;
    background: var(--bg-light);
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image svg {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.service-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.process {
    padding: 60px 0;
    background: var(--bg-white);
}

.process h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing {
    padding: 60px 0;
    background: var(--bg-light);
}

.pricing h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.blog-content {
    padding: 50px 0;
    background: var(--bg-light);
}

.blog-content .container {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 3;
}

.blog-post {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.blog-post.featured {
    margin-bottom: 40px;
}

.post-image {
    overflow: hidden;
}

.post-image svg {
    width: 100%;
    height: 350px;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image svg {
    transform: scale(1.02);
}

.post-content {
    padding: 35px;
}

.post-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.4;
}

.post-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    padding-left: 10px;
}

.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.author-bio {
    text-align: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.author-bio p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

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

.popular-posts span {
    font-size: 12px;
    color: var(--text-muted);
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    font-size: 14px;
    color: var(--text-secondary);
}

.category-list span {
    font-size: 13px;
    color: var(--primary);
    background: rgba(255, 107, 157, 0.1);
    padding: 3px 10px;
    border-radius: 10px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.subscribe-form button {
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.story-intro {
    padding: 60px 0;
    background: var(--bg-white);
}

.story-intro .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
}

.intro-image svg {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.intro-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.intro-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline {
    padding: 60px 0;
    background: var(--bg-light);
}

.timeline h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.timeline-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 120px;
    flex-shrink: 0;
    text-align: center;
}

.timeline-date::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.2);
}

.timeline-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.team {
    padding: 60px 0;
    background: var(--bg-white);
}

.team h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.member-role {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social .social-link {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 15px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: var(--primary);
    color: white;
}

.behind-scenes {
    padding: 60px 0;
    background: var(--bg-light);
}

.behind-scenes h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.scene-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.scene-image svg {
    width: 100%;
    height: 200px;
}

.scene-card h3 {
    padding: 20px 25px 10px;
    font-size: 18px;
    color: var(--text-primary);
}

.scene-card p {
    padding: 0 25px 25px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.info-card {
    text-align: center;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-icon svg {
    width: 25px;
    height: 25px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-form {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-form h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.contact-form form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.cooperation-process {
    padding: 60px 0;
    background: var(--bg-white);
}

.cooperation-process h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.cooperation-process .process-steps {
    grid-template-columns: repeat(4, 1fr);
}

.cooperation-process .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.cooperation-process .step-icon svg {
    width: 100%;
    height: 100%;
}

.faq {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-arrow {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .about-content {
        flex-direction: column;
    }

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

    .showcase-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

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

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

    .work-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

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

    .service-item {
        flex-direction: column !important;
    }

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

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

    .blog-content .container {
        flex-direction: column;
    }

    .timeline-list::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .timeline-date::before {
        left: 20px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 32px;
    }

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

    .about-features {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cooperation-process .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .intro-stats {
        grid-template-columns: 1fr;
    }

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

    .social-icons {
        justify-content: center;
    }
}