* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient-primary: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%);
    --gradient-hover: linear-gradient(135deg, #FF9A5B 0%, #E84593 50%, #9B5FCF 75%, #6B7CE8 100%);
    --gradient-light: linear-gradient(135deg, rgba(245, 133, 41, 0.1) 0%, rgba(221, 42, 123, 0.1) 50%, rgba(129, 52, 175, 0.1) 75%, rgba(81, 91, 212, 0.1) 100%);
    --color-white: #FFFFFF;
    --color-accent: #FFDC80;
    --color-bg: #FAFAFA;
    --color-text-dark: #1a1a1a;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.18);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --radius-card: 20px;
    --radius-button: 12px;
    --radius-small: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
}

h2 {
    font-size: clamp(30px, 5vw, 44px);
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3.5vw, 32px);
}

p {
    margin-bottom: 1.25rem;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-small);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-image: url('../images/bg1_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.92) 0%, rgba(221, 42, 123, 0.92) 50%, rgba(129, 52, 175, 0.92) 75%, rgba(81, 91, 212, 0.92) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

header nav {
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-button);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: clamp(14px, 1.5vw, 15px);
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-white);
    padding: clamp(80px, 12vw, 140px) 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-home {
    background-image: url('../images/bg_hero.jpg');
}

.hero-content {
    background-image: url('../images/bg3_hero.jpg');
}

.hero-strategy {
    background-image: url('../images/bg4_hero.jpg');
}

.hero-social-strategy {
    background-image: url('../images/bg4_hero.jpg');
}

.hero-video {
    background-image: url('../images/bg5_hero.jpg');
}

.hero-video-production {
    background-image: url('../images/bg5_hero.jpg');
}

.hero-contact {
    background-image: url('../images/bg1_hero.jpg');
}

.hero-thankyou {
    background: var(--gradient-primary);
    background-image: none;
}

.hero-privacy {
}

.hero-cookies {
}

.hero-terms {
}

.hero-return {
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.85) 0%, rgba(221, 42, 123, 0.85) 50%, rgba(129, 52, 175, 0.85) 75%, rgba(81, 91, 212, 0.85) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin: 0 0.75rem 0.75rem 0;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-button);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.btn::before {
    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, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-white);
    color: #515BD4;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
    box-shadow: 0 8px 25px rgba(255, 220, 128, 0.4);
}

.section {
    padding: clamp(60px, 10vw, 100px) 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    font-size: clamp(20px, 2.5vw, 24px);
}

.card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-small);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-icon {
    text-align: center;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon .icon {
    font-size: 36px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-icon:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.4);
}

.card-icon h3 {
    margin-top: 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.instagram-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-small);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.instagram-grid img:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.stories-container {
    margin-top: 2rem;
    position: relative;
    padding: 1rem 0;
}

.stories-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(221, 42, 123, 0.5) transparent;
    padding: 0.5rem 0.5rem 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.stories-scroll::-webkit-scrollbar {
    height: 8px;
}

.stories-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.stories-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #F58529, #DD2A7B);
    border-radius: 10px;
}

.stories-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FF9A5B, #E84593);
}

.story-item {
    flex: 0 0 auto;
    width: 280px;
    height: 500px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
    padding: 3px;
}

.story-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-color: #DD2A7B;
}

.step-number {
    position: absolute;
    left: -3rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.5);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(22px, 3vw, 26px);
}

.step-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.step-connector {
    position: absolute;
    left: 1.5rem;
    bottom: -3rem;
    width: 3px;
    height: 3rem;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.approach-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.approach-intro p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-item {
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.05) 0%, rgba(221, 42, 123, 0.05) 50%, rgba(129, 52, 175, 0.05) 75%, rgba(81, 91, 212, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.approach-item:hover::before {
    opacity: 0.08;
}

.approach-item:hover {
    border-color: #DD2A7B;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(221, 42, 123, 0.2);
}

.approach-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.approach-item:hover .approach-icon {
    transform: scale(1.2) rotate(5deg);
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.offer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.5s ease;
}

.offer-item:hover::before {
    opacity: 0.05;
    width: 300px;
    height: 300px;
}

.offer-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-color: #DD2A7B;
}

.offer-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.offer-item:hover .offer-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.5);
}

.offer-content-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.offer-header h3 {
    margin: 0;
    font-size: clamp(22px, 3vw, 26px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-badge {
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(221, 42, 123, 0.3);
    transition: transform 0.3s ease;
}

.offer-item:hover .offer-badge {
    transform: scale(1.05);
}

.offer-content-wrapper p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1.25rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 17px;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(221, 42, 123, 0.3);
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-button);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-lighter);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DD2A7B;
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(221, 42, 123, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #DD2A7B;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
    color: var(--color-text-light);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin: 2.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-main-section {
    padding: 80px 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    font-size: 56px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 700;
}

.contact-info-card p {
    margin-bottom: 0;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form .section-title {
    margin-bottom: 1rem;
}

.label-icon {
    margin-right: 0.5rem;
    font-size: 18px;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-icon {
    font-size: 20px;
}

.contact-map-wrapper {
    position: relative;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--color-white);
    position: relative;
}

.map-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.95), rgba(221, 42, 123, 0.95));
    color: var(--color-white);
    padding: 1.5rem 2rem;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-header h3 {
    margin-bottom: 0.5rem;
    font-size: 22px;
    color: var(--color-white);
}

.map-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        position: static;
    }

    .map-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .map-container {
        height: 400px;
    }
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 4rem 20px 2rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--color-accent);
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cccccc;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #999;
}

.footer-bottom a {
    color: var(--color-accent);
    margin: 0 12px;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.privacy-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-popup.active {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(120px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup p {
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-popup .btn {
    padding: 12px 24px;
    font-size: 13px;
    margin-right: 12px;
    margin-top: 0.5rem;
}

.content-block {
    margin: 2.5rem 0;
}

.content-block h3 {
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 60%;
}

.story-editor-container {
    max-width: 1400px;
    margin: 0 auto;
}

.editor-instructions {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.1), rgba(221, 42, 123, 0.1));
    border-radius: var(--radius-card);
    border-left: 4px solid #DD2A7B;
}

.editor-instructions p {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 15px;
}

.story-editor-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-editor-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.editor-sidebar {
    width: 280px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.editor-sidebar-left {
    order: 1;
}

.editor-sidebar-right {
    order: 3;
}

.editor-tools {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toolbar-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.tool-btn {
    width: 100%;
    padding: 12px 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-button);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(221, 42, 123, 0.3);
    justify-content: flex-start;
}

.tool-btn::before {
    content: attr(data-icon);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.tool-btn:hover {
    background: var(--gradient-hover);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.4);
}

.tool-btn.active {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.6);
    transform: translateX(5px);
}

.tool-btn.secondary {
    background: #6c757d;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.tool-btn.secondary:hover {
    background: #5a6268;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.editor-canvas-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    order: 2;
}

.story-canvas {
    width: 280px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    touch-action: none;
    user-select: none;
}

.story-preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 0;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.draw-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: crosshair;
    display: none;
    touch-action: none;
}

.draw-canvas.active {
    display: block;
}

.story-content-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.story-content-layer > * {
    pointer-events: auto;
}

.story-text-editable {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    cursor: move;
    outline: none;
    word-wrap: break-word;
    transition: all 0.3s ease;
    max-width: 85%;
    border: 2px dashed transparent;
    user-select: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    min-width: 100px;
}

.story-text-editable[contenteditable="true"] {
    cursor: text;
    user-select: text;
}

.story-text-editable[contenteditable="true"]:focus {
    cursor: text;
    user-select: text;
}

.story-text-editable:focus {
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.story-text-editable:empty::before {
    content: 'Tap to add text';
    color: rgba(255, 255, 255, 0.5);
}

.story-hashtag {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.2rem;
    background: rgba(59, 130, 246, 0.9);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    border-radius: 22px;
    cursor: move;
    outline: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    user-select: none;
}

.story-hashtag[contenteditable="true"] {
    cursor: text;
    user-select: text;
}

.story-hashtag:focus {
    background: rgba(59, 130, 246, 1);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.story-music {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(59, 130, 246, 0.95));
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: move;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    user-select: none;
    touch-action: none;
}

.story-music:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(221, 42, 123, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(221, 42, 123, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.editor-panels {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-out;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 200px;
    overflow-y: auto;
}

.editor-panels::-webkit-scrollbar {
    width: 6px;
}

.editor-panels::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 3px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.panel {
    display: none;
}

.panel.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.color-picker, .bg-picker {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.color-btn, .bg-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-btn:hover, .bg-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.color-btn.active, .bg-btn.active {
    border-color: #DD2A7B;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(221, 42, 123, 0.3);
}

.bg-btn {
    border-radius: 8px;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.sticker-item {
    width: 50px;
    height: 50px;
    font-size: 30px;
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-item:hover {
    transform: scale(1.1);
    border-color: #DD2A7B;
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.3);
}

.draw-tools {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.brush-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.brush-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
}

.brush-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
}

.tool-label {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 14px;
}

.music-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.music-option {
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-button);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(221, 42, 123, 0.3);
}

.music-option:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.5);
}

.music-option:active {
    transform: translateX(4px);
}

.sticker-overlay {
    position: absolute;
    font-size: 48px;
    cursor: move;
    user-select: none;
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    touch-action: none;
    padding: 8px;
    border-radius: 12px;
}

.sticker-overlay:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.sticker-overlay:active {
    transform: scale(1.2);
}

.sticker-overlay.selected,
.image-overlay.selected,
.story-text-editable.selected,
.story-hashtag.selected,
.story-music.selected {
    outline: 3px solid #DD2A7B;
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(221, 42, 123, 0.2), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticker-overlay::after {
    content: '×';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 4;
}

.sticker-overlay:hover::after {
    opacity: 1;
}

.image-overlay {
    position: absolute;
    max-width: 75%;
    max-height: 75%;
    border-radius: 16px;
    cursor: move;
    user-select: none;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    touch-action: none;
}

.image-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(221, 42, 123, 0.3);
}

.image-overlay:active {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(221, 42, 123, 0.5);
}

.image-overlay::after {
    content: '×';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-overlay:hover::after {
    opacity: 1;
}

.editor-cta {
    text-align: center;
    padding-top: 2rem;
}

.ai-creator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ai-creator-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.upload-area {
    position: relative;
    width: 100%;
    min-height: 300px;
    border: 3px dashed #DD2A7B;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.05), rgba(221, 42, 123, 0.05));
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: #F58529;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.1), rgba(221, 42, 123, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.2);
}

.upload-area.drag-over {
    border-color: #F58529;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.15), rgba(221, 42, 123, 0.15));
    transform: scale(1.02);
}

.upload-placeholder {
    text-align: center;
    padding: 2rem;
}

.upload-icon {
    font-size: 64px;
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.upload-hint {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.upload-size {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.uploaded-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.remove-photo-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.remove-photo-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-size: 16px;
}

.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-button);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: var(--color-text-dark);
}

.form-group textarea:focus {
    outline: none;
    border-color: #DD2A7B;
    box-shadow: 0 0 0 3px rgba(221, 42, 123, 0.1);
}

.form-hint {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ai-generate {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 16px;
    padding: 1rem 2rem;
}

.btn-icon {
    font-size: 20px;
}

.btn-secondary {
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    box-shadow: 0 2px 8px rgba(196, 69, 105, 0.4);
    color: #FFFFFF;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FF5C8A, #B73A5D);
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.6);
    transform: translateY(-2px);
}

.ai-result-area {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.result-header h3 {
    margin: 0;
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-result-btn {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-result-btn:hover {
    background: #FF0000;
    color: white;
    transform: scale(1.1);
}

.result-canvas-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.ai-result-canvas {
    width: 280px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-loading {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.result-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.result-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .result-actions .btn {
        flex: 1;
        min-width: 150px;
    }

@media (max-width: 768px) {
    .ai-creator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ai-creator-form-wrapper {
        padding: 1.5rem;
    }

    .upload-area {
        min-height: 250px;
    }

    .upload-icon {
        font-size: 48px;
    }

    .upload-text {
        font-size: 16px;
    }

    .ai-result-area {
        padding: 1.5rem;
    }

    .result-header h3 {
        font-size: 18px;
    }

    .ai-result-canvas {
        width: 240px;
        height: 426px;
        max-width: 100%;
    }

    .result-canvas-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .result-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ai-creator-container {
        gap: 1.5rem;
    }

    .ai-creator-form-wrapper {
        padding: 1.25rem;
    }

    .upload-area {
        min-height: 200px;
        padding: 1rem;
    }

    .upload-icon {
        font-size: 40px;
        margin-bottom: 0.75rem;
    }

    .upload-text {
        font-size: 14px;
    }

    .upload-hint {
        font-size: 12px;
    }

    .upload-size {
        font-size: 11px;
    }

    .form-group textarea {
        font-size: 14px;
        padding: 0.875rem 1rem;
    }

    .form-hint {
        font-size: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-ai-generate {
        width: 100%;
        min-width: auto;
        font-size: 14px;
        padding: 0.875rem 1.5rem;
    }

    .btn-secondary {
        width: 100%;
        font-size: 14px;
        padding: 0.875rem 1.5rem;
    }

    .ai-result-area {
        padding: 1.25rem;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .result-header h3 {
        font-size: 16px;
        width: 100%;
    }

    .close-result-btn {
        align-self: flex-end;
    }

    .result-canvas-wrapper {
        margin: 1rem -1.25rem;
        padding: 0 1.25rem;
    }

    .ai-result-canvas {
        width: 200px;
        height: 355px;
        max-width: calc(100vw - 4rem);
    }

    .result-content {
        font-size: 12px;
    }

    .result-actions {
        margin-top: 1rem;
    }

    .result-actions .btn {
        width: 100%;
        font-size: 14px;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 320px) {
    .ai-creator-container {
        gap: 1rem;
    }

    .upload-area {
        min-height: 180px;
    }

    .upload-icon {
        font-size: 36px;
    }

    .ai-result-canvas {
        width: 180px;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .nav-menu a {
        padding: 0.65rem 1.2rem;
        font-size: 14px;
    }
    
    .logo {
        font-size: clamp(18px, 2.5vw, 24px);
    }
}

@media (max-width: 900px) {
    .nav-menu a {
        padding: 0.6rem 1rem;
        font-size: 13px;
    }
    
    .logo {
        font-size: clamp(16px, 2.2vw, 22px);
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    header {
        background-attachment: scroll;
    }
    
    .hero {
        background-attachment: scroll;
    }

    nav {
        gap: 1rem;
    }

    .logo {
        font-size: clamp(14px, 3vw, 20px);
        letter-spacing: 0.8px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: var(--radius-card);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 15px;
        white-space: normal;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 60px 20px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .story-item {
        width: 240px;
        height: 425px;
    }

    .stories-scroll {
        gap: 0.75rem;
    }

    .process-timeline {
        padding-left: 2.5rem;
        gap: 2.5rem;
    }

    .process-timeline::before {
        left: 1.25rem;
        width: 2px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        left: -2.5rem;
    }

    .process-step {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .step-connector {
        left: 1.25rem;
        bottom: -2.5rem;
        height: 2.5rem;
        width: 2px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .approach-item {
        padding: 1.5rem 1.25rem;
    }

    .approach-icon {
        font-size: 40px;
    }

    .offer-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .offer-item:hover {
        transform: translateY(-5px);
    }

    .offer-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .offer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .story-editor-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .editor-sidebar {
        width: 100%;
        max-width: 500px;
    }

    .editor-sidebar-left,
    .editor-sidebar-right {
        order: 0;
    }

    .editor-canvas-area {
        order: 0;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 0.75rem;
    }
    
    .logo {
        font-size: clamp(12px, 4vw, 18px);
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-toggle {
        font-size: 24px;
        padding: 0.4rem;
    }
    
    .nav-menu a {
        padding: 0.875rem 1.25rem;
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 16px;
    }

    .card {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .story-item {
        width: 200px;
        height: 355px;
    }

    .story-editor-content {
        flex-direction: column;
        gap: 1rem;
    }

    .editor-sidebar {
        width: 100%;
    }

    .story-canvas {
        width: 240px;
        height: 426px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .approach-item {
        padding: 1.5rem 1rem;
    }

    .approach-icon {
        font-size: 36px;
    }

    .approach-intro p {
        font-size: 16px;
    }

    .offer-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .offer-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .offer-header h3 {
        font-size: 20px;
    }

    .offer-content-wrapper p {
        font-size: 15px;
    }

    .story-canvas {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 280 / 500;
    }

    .story-text-editable {
        font-size: 18px;
        padding: 1rem;
    }

    .editor-toolbar {
        padding: 1.25rem;
    }

    .color-btn, .bg-btn {
        width: 35px;
        height: 35px;
    }

    .editor-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    nav {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: clamp(11px, 4.5vw, 16px);
        letter-spacing: 0.3px;
    }
    
    .mobile-menu-toggle {
        font-size: 22px;
        padding: 0.35rem;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 13px;
    }
    
    .hero {
        padding: 50px 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section {
        padding: 40px 12px;
    }

    .container {
        padding: 0 12px;
    }
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.stat-chart {
    height: 8px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.chart-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.line-chart-container {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

.line-chart {
    position: relative;
    padding: 2rem 0;
}

.chart-line-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
}

.chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chart-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fadeInDot 0.5s ease forwards;
}

.chart-dot:nth-child(1) { animation-delay: 0.2s; }
.chart-dot:nth-child(2) { animation-delay: 0.4s; }
.chart-dot:nth-child(3) { animation-delay: 0.6s; }
.chart-dot:nth-child(4) { animation-delay: 0.8s; }
.chart-dot:nth-child(5) { animation-delay: 1s; }
.chart-dot:nth-child(6) { animation-delay: 1.2s; }
.chart-dot:nth-child(7) { animation-delay: 1.4s; }
.chart-dot:nth-child(8) { animation-delay: 1.6s; }
.chart-dot:nth-child(9) { animation-delay: 1.8s; }

@keyframes fadeInDot {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.strategy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strategy-card:hover::before {
    opacity: 1;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.strategy-icon {
    font-size: 56px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    transform: scale(1.1) rotate(5deg);
}

.strategy-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--color-text-dark);
}

.strategy-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.strategy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.framework-section {
    padding: 80px 0;
}

.framework-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.framework-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.framework-step::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.framework-step:hover::before {
    transform: scaleY(1);
}

.framework-step:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-medium);
}

.framework-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    order: 2;
}

.framework-step .step-content {
    flex: 1;
    order: 1;
}

.framework-step .step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.framework-step .step-content p {
    margin-bottom: 1rem;
}

.step-progress {
    height: 6px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.implementation-section {
    padding: 80px 0;
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.implementation-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.implementation-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 133, 41, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.implementation-card:hover::after {
    opacity: 1;
}

.implementation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.implementation-icon {
    font-size: 64px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.implementation-card:hover .implementation-icon {
    transform: scale(1.15) rotate(-5deg);
}

.implementation-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.implementation-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.implementation-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.implementation-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 15px;
}

.implementation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DD2A7B;
    font-weight: 800;
    font-size: 18px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 36px;
    }

    .line-chart-container {
        padding: 1.5rem;
    }

    .chart-line-wrapper {
        height: 200px;
    }

    .strategy-services-grid {
        grid-template-columns: 1fr;
    }

    .framework-step {
        flex-direction: column;
        text-align: center;
    }

    .framework-step:hover {
        transform: translateY(-5px);
    }

    .implementation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .strategy-card {
        padding: 2rem;
    }

    .implementation-card {
        padding: 2rem;
    }
}

.video-stats-section {
    padding: 80px 0;
}

.video-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-stat-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.video-stat-card:hover::before {
    transform: scaleX(1);
}

.video-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-stat-icon {
    font-size: 56px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.video-stat-card:hover .video-stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.video-stat-value {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.video-stat-label {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-service-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 42, 123, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-service-card:hover::after {
    opacity: 1;
}

.video-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.video-service-icon {
    font-size: 64px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-service-card:hover .video-service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.video-service-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.video-service-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 14px;
}

.service-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #DD2A7B;
    font-size: 12px;
}

.production-process-section {
    padding: 80px 0;
}

.production-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.production-step {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.production-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.production-step:hover::before {
    transform: scaleY(1);
}

.production-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-left-color: transparent;
}

.production-step-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.production-step:hover .production-step-icon {
    transform: scale(1.2) rotate(10deg);
}

.production-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.production-step-content {
    flex: 1;
}

.production-step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.production-step-content p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.video-formats-section {
    padding: 80px 0;
}

.video-formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.video-format-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
}

.video-format-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.format-video-wrapper {
    width: 100%;
    max-width: 200px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: var(--gradient-primary);
}

.format-video-wrapper.vertical {
    max-width: 120px;
    height: 200px;
}

.format-video-wrapper.square {
    max-width: 150px;
    height: 150px;
}

.format-video-wrapper.horizontal {
    max-width: 200px;
    height: 120px;
}

.format-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.format-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    font-weight: 800;
    font-size: 12px;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-text-dark);
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
    background: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

.format-video-wrapper:hover .video-play-btn {
    opacity: 1;
}

.format-video-wrapper:not(:hover) .video-play-btn.playing {
    opacity: 0;
}

.video-format-card h3 {
    margin-bottom: 1rem;
}

.video-format-card p {
    margin-bottom: 1.5rem;
}

.format-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.format-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.capabilities-section {
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-item {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-item:hover::before {
    opacity: 1;
}

.capability-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.capability-icon {
    font-size: 56px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.capability-item:hover .capability-icon {
    transform: scale(1.15) rotate(5deg);
}

.capability-item h3 {
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.capability-item p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .video-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-stat-value {
        font-size: 36px;
    }

    .video-services-grid {
        grid-template-columns: 1fr;
    }

    .video-formats-grid {
        grid-template-columns: 1fr;
    }

    .production-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .production-step:hover {
        transform: translateY(-5px);
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-stats-grid {
        grid-template-columns: 1fr;
    }

    .video-stat-card {
        padding: 2rem;
    }

    .video-service-card {
        padding: 2rem;
    }

    .video-format-card {
        padding: 2rem;
    }

    .capability-item {
        padding: 1.5rem;
    }
}
