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

:root {
    --color-brand: #d61729;
    --color-dark: #1a1a1a;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
    color: var(--color-gray-800);
    line-height: 1.6;
    padding-top: 96px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.text-brand {
    color: var(--color-brand);
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 8px;
}

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

/* Navbar */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }
}

.nav-link-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: var(--font-sans);
}

.navbar-custom .nav-link-btn {
    color: var(--color-gray-600);
}

.nav-link-btn:hover {
    color: var(--color-brand);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-menu {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    opacity: 1;
}

.btn-menu svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

@media (min-width: 1024px) {
    .btn-menu {
        display: none;
    }
}

.navbar-custom:not(.scrolled) .btn-menu {
    color: white;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.navbar-custom.scrolled .btn-menu {
    color: var(--color-gray-900);
    filter: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.navbar-custom.menu-open {
    z-index: 999;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 1051;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.mobile-logo {
    height: 32px;
    width: auto;
}

.btn-close-menu {
    background: none;
    border: none;
    color: var(--color-gray-900);
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.mobile-nav-link {
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.mobile-nav-link:hover {
    color: var(--color-brand);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    text-decoration: none;
}

.btn-brand {
    background-color: var(--color-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 23, 41, 0.2);
}

.btn-brand:hover {
    background-color: #b81424;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(214, 23, 41, 0.3);
}

.btn-brand:active {
    transform: scale(0.95);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: white;
    color: var(--color-gray-900);
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-dark {
    background-color: var(--color-gray-900);
    color: white;
    width: 100%;
    margin-bottom: 2rem;
}

.btn-dark:hover {
    background-color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slow-zoom 20s ease-in-out infinite alternate;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
    z-index: 1;
}

.hero-slide[data-bg="#f3d9d4"]::after {
    background: #f3d9d4;
}

.hero-slide[data-bg="#e5e7eb"]::after {
    background: #e5e7eb;
}

.hero-slide[data-bg="#d1d5db"]::after {
    background: #d1d5db;
}

@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-content-inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-italic {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-hero-primary {
    width: 100%;
    background-color: var(--color-brand);
    color: white;
    font-weight: 800;
    border-radius: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(214, 23, 41, 0.4);
    cursor: pointer;
    font-family: var(--font-heading);
}

@media (min-width: 640px) {
    .btn-hero-primary {
        width: auto;
    }
}

.btn-hero-primary:hover {
    background-color: #b81424;
    transform: scale(1.05);
}

.btn-hero-primary:active {
    transform: scale(0.95);
}

.btn-hero-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .btn-hero-secondary {
        width: auto;
    }
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.hero-indicator {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-indicator.active {
    width: 40px;
    background: var(--color-brand);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: var(--color-brand);
    border-radius: 999px;
    margin: 1rem auto 0;
}

/* Process Section */
.section-process {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .process-grid {
        gap: 4rem;
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.process-step {
    border-top: 2px solid var(--color-gray-100);
    padding-top: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-top-color: rgba(214, 23, 41, 0.3);
}

.process-step-active {
    border-top-color: var(--color-brand);
}

.process-number {
    display: block;
    color: var(--color-brand);
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.process-step:hover .process-title {
    color: var(--color-brand);
}

.process-text {
    color: var(--color-gray-500);
    line-height: 1.75;
}

.process-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .process-cta {
        flex-direction: row;
    }
}

/* Stats Section */
.section-stats {
    background: var(--color-gray-900);
    padding: 4rem 0;
}

.stats-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--color-brand);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-item:hover .stat-value {
    color: var(--color-brand);
}

.stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Features Section */
.section-features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        gap: 3rem;
    }
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--color-gray-50);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gray-100);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-brand);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--color-gray-600);
    line-height: 1.75;
}

/* Portfolio Section */
.section-portfolio {
    background: var(--color-gray-50);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.btn-filter {
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 2px solid var(--color-gray-100);
    background: white;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.btn-filter:hover {
    border-color: rgba(214, 23, 41, 0.3);
    color: var(--color-brand);
}

.btn-filter.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 23, 41, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s ease;
}

.portfolio-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(214, 23, 41, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .portfolio-category {
        font-size: 0.75rem;
    }
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-link-brand {
    background: none;
    border: none;
    color: var(--color-brand);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
}

.btn-link-brand:hover {
    text-decoration: underline;
}

/* Pricing Section */
.section-pricing {
    background: white;
    position: relative;
    overflow: hidden;
}

.pricing-header-content {
    margin-top: 3rem;
}

.pricing-photo-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-photo-count svg {
    color: var(--color-brand);
}

.pricing-slider-container {
    position: relative;
    padding: 1rem 1rem 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.slider-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.pricing-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--color-gray-100);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.pricing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--color-brand);
    cursor: pointer;
    box-shadow: 0 15px 25px -5px rgba(214, 23, 41, 0.4);
    transition: transform 0.2s;
}

.pricing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.pricing-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--color-brand);
    cursor: pointer;
    box-shadow: 0 15px 25px -5px rgba(214, 23, 41, 0.4);
}

.slider-value {
    position: absolute;
    top: -1rem;
    transform: translateX(-50%);
    background: var(--color-brand);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(214, 23, 41, 0.4);
    z-index: 10;
    font-family: var(--font-sans);
}

.pricing-toggle-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.pricing-toggle {
    background: var(--color-gray-50);
    padding: 0.375rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
}

.btn-toggle {
    padding: 0.75rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-toggle:hover {
    color: var(--color-gray-900);
}

.btn-toggle.active {
    background: white;
    color: var(--color-gray-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-100);
}

.btn-toggle.active.bg-brand {
    background: var(--color-brand);
    color: white;
    box-shadow: 0 4px 6px rgba(214, 23, 41, 0.2);
}

.btn-toggle .badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 2.5rem;
    padding: 2.5rem;
    border: 1px solid var(--color-gray-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.pricing-card.recommended {
    background: #fdf9f8;
    border: 2px solid var(--color-brand);
    box-shadow: 0 25px 50px -12px rgba(214, 23, 41, 0.25);
    transform: translateY(-1rem);
}

@media (min-width: 1024px) {
    .pricing-card.recommended {
        transform: translateY(-1.5rem);
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-brand);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    box-shadow: 0 10px 30px rgba(214, 23, 41, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card-header svg {
    color: var(--color-gray-400);
    flex-shrink: 0;
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.pricing-credits {
    background: var(--color-gray-50);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-gray-100);
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.pricing-card:hover .pricing-credits {
    background: #fef2f2;
}

.pricing-card.recommended .pricing-credits {
    background: rgba(214, 23, 41, 0.1);
    border-color: rgba(214, 23, 41, 0.1);
}

.pricing-credits-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.pricing-card.recommended .pricing-credits-label {
    color: var(--color-brand);
}

.pricing-credits-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.pricing-price-old {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    text-decoration: line-through;
    font-weight: 700;
}

.pricing-price-period {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.pricing-card.recommended .pricing-price-period {
    color: var(--color-brand);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.pricing-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.pricing-features li svg {
    color: var(--color-brand);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-card.recommended .pricing-features li {
    color: var(--color-gray-900);
    font-weight: 700;
}

/* Contact Section */
.section-contact {
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: var(--color-gray-50);
    border-radius: 3rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--color-gray-100);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 5rem;
    }
}

.badge-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fef2f2;
    color: var(--color-brand);
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

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

.contact-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 4.5rem;
    }
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    margin-bottom: 3rem;
    line-height: 1.75;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contact-subtitle {
        font-size: 1.25rem;
    }
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: var(--color-brand);
    border-radius: 50%;
}

.contact-integrations {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-gray-200);
    text-align: center;
}

.integration-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--color-gray-400);
    text-transform: uppercase;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.integration-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
}

.integration-text {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--color-gray-800);
}

/* FAQ Section */
.section-faq {
    background: var(--color-gray-50);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-100);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-item.active {
    border-color: rgba(214, 23, 41, 0.2);
    box-shadow: 0 0 0 4px rgba(214, 23, 41, 0.05), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

.faq-item.active .faq-question {
    color: var(--color-brand);
}

.faq-question:hover {
    color: var(--color-brand);
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    color: var(--color-gray-400);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--color-brand);
    color: white;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
}

.faq-divider {
    width: 48px;
    height: 4px;
    background: rgba(214, 23, 41, 0.1);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.faq-answer-text {
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: 1.125rem;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.faq-contact-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-brand);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-contact-link:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: white;
    border-top: 1px solid var(--color-gray-800);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-col {
        text-align: left;
    }
    .footer-col-center {
        text-align: center;
    }
    .footer-col-end {
        text-align: right;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-social {
    color: var(--color-gray-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: var(--color-brand);
    transform: scale(1.1);
}

.footer-email {
    color: var(--color-gray-300);
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--color-brand);
}

.footer-copyright {
    color: var(--color-gray-600);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Modals */
.modal-custom {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.modal-custom.active {
    display: flex;
}

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

.modal-custom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-custom-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 600px;
    max-height: 95vh;
    z-index: 10;
}

@media (max-width: 767px) {
    .modal-custom-content {
        border-radius: 0;
        max-width: 100%;
        height: 100%;
        max-height: 100vh;
    }
}

.modal-portfolio {
    max-width: 48rem;
    height: auto;
    max-height: 95vh;
}

.modal-form {
    max-width: 600px;
    height: auto;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 110;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gray-100);
    border-radius: 50%;
    color: var(--color-gray-900);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: white;
    transform: scale(0.95);
}

.modal-custom-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Before After Slider */
.before-after-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: col-resize;
    user-select: none;
}

@media (min-width: 768px) {
    .before-after-container {
        border-radius: 1.5rem;
    }
}

.before-after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.before-after-before .before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    object-position: left center;
}

.before-after-label {
    position: absolute;
    top: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.before-after-label.before {
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.before-after-label.after {
    right: 0.75rem;
    background: rgba(214, 23, 41, 0.9);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .before-after-label {
        font-size: 0.625rem;
        top: 0.75rem;
    }
}

.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    cursor: col-resize;
    z-index: 20;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .before-after-handle {
        width: 4px;
    }
}

.before-after-handle-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    border: 2px solid rgba(214, 23, 41, 0.1);
}

@media (min-width: 768px) {
    .before-after-handle-circle {
        width: 40px;
        height: 40px;
    }
}

.before-after-handle-icon {
    color: var(--color-brand);
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .before-after-handle-icon {
        width: 20px;
        height: 20px;
    }
}

/* Portfolio Modal Content */
.portfolio-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-modal-slider {
    flex: 1;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 0;
    overflow: hidden;
}

.portfolio-modal-thumbnails {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--color-gray-50);
}

.portfolio-thumbnails-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-thumbnail {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

@media (min-width: 768px) {
    .portfolio-thumbnail {
        width: 64px;
        height: 64px;
    }
}

.portfolio-thumbnail:hover {
    opacity: 1;
}

.portfolio-thumbnail.active {
    border-color: var(--color-brand);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(214, 23, 41, 0.1);
    transform: scale(1.05);
}

.portfolio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-thumbnail-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 900;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-thumbnail.active .portfolio-thumbnail-number {
    opacity: 1;
}

.portfolio-modal-action {
    padding: 1rem 1.5rem;
}

.portfolio-modal-action-btn {
    width: 100%;
    background: var(--color-brand);
    color: white;
    font-weight: 800;
    padding: 1.25rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.125rem;
    box-shadow: 0 20px 40px rgba(214, 23, 41, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
}

.portfolio-modal-action-btn:hover {
    background: #b81424;
    transform: scale(0.95);
}

.portfolio-modal-action-note {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* Free Trial Form */
.form-container {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .form-container {
        padding: 2.5rem;
    }
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-intro {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-intro strong {
    font-weight: 700;
    color: var(--color-gray-900);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
    background: white;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .category-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    text-align: left;
}

.category-btn:hover {
    border-color: var(--color-brand);
    background: white;
}

.category-btn.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
}

.category-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-gray-200);
    color: var(--color-gray-700);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.category-btn.active .category-letter {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.category-btn.active .category-name {
    color: white;
}

.category-btn.error {
    border-color: #dc2626;
    background: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

.file-upload-area {
    border: 2px dashed var(--color-gray-300);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--color-gray-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.file-upload-area:hover {
    border-color: var(--color-brand);
    background: white;
}

.file-upload-area.error {
    border-color: #dc2626;
    border-width: 3px;
    background: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.file-upload-area svg {
    color: var(--color-gray-400);
}

.file-upload-text {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.file-upload-note {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

.file-name {
    font-size: 0.875rem;
    color: var(--color-brand);
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-gray-900);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
    box-shadow: 0 2px 8px rgba(6, 95, 70, 0.1);
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #dc2626;
    box-shadow: 0 2px 8px rgba(153, 27, 27, 0.2);
    animation: slideDown 0.3s ease-out, pulse 0.5s ease-in-out;
}

.form-alert {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
    text-align: center;
    position: relative;
}

.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 3px solid #dc2626;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    animation: slideDown 0.3s ease-out, pulse 0.6s ease-in-out;
}

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

.form-container {
    overflow-y: auto;
    flex: 1;
}

.form-container::-webkit-scrollbar {
    width: 6px;
}

.form-container::-webkit-scrollbar-track {
    background: var(--color-gray-100);
    border-radius: 3px;
}

.form-container::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: 3px;
}

.form-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-400);
}
