@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --passion-primary: #C72963;
    --warmth-secondary: #93382A;
    --energy-accent: #EB6BDA;

    --vivid-purple: #9F7AEA;
    --sky-blue: #667EEA;
    --gradient-pink: #F093FB;
    --fresh-green: #68D391;
    --sunset-orange: #F6AD55;
    --coral-red: #FC8181;
    --ocean-blue: #63B3ED;
    --cloud-white: #F7FAFC;
    --deep-slate: #2D3748;

    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: 30px;
    --space-lg: 50px;
    --space-xl: 70px;
    --space-xxl: 100px;

    --type-xs: 8px;
    --type-sm: 16px;
    --type-base: 32px;
    --type-lg: 64px;
    --type-xl: 128px;
    --type-xxl: 256px;
    --type-hero: 512px;

    --font-expressive: 'Poppins', sans-serif;
    --font-clean: 'Inter', sans-serif;

    --rhythm-flow: 1.6;
    --max-canvas: 1440px;
    --grid-breath: 3rem;
}

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

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

body {
    font-family: var(--font-clean);
    font-size: var(--type-sm);
    line-height: var(--rhythm-flow);
    color: var(--deep-slate);
    background: linear-gradient(135deg, var(--cloud-white) 0%, #ffffff 100%);
    position: relative;
    overflow-x: hidden;
}

.creative-wrapper {
    max-width: var(--max-canvas);
    margin: 0 auto;
    position: relative;
}

.navbar {
    background: linear-gradient(120deg, var(--passion-primary) 0%, var(--warmth-secondary) 100%);
    padding: var(--space-md) var(--space-lg);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(199, 41, 99, 0.2);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--max-canvas);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-expressive);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo:hover {
    transform: scale(1.08) rotate(-2deg);
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 12px;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.main-nav {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-expressive);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--energy-accent), var(--gradient-pink));
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.nav-link:hover::before {
    width: 80%;
}

.primary-banner {
    position: relative;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-breath);
    padding: var(--space-xxl) var(--space-lg);
    align-items: center;
    overflow: hidden;
}

.primary-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--energy-accent) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

.hero-content-box {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: var(--space-xl);
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(199, 41, 99, 0.25),
        0 10px 20px rgba(235, 107, 218, 0.15);
    transform: translateX(-50px);
    backdrop-filter: blur(10px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 3;
}

.hero-image-box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(199, 41, 99, 0.2);
    transform: translateX(30px) translateY(-30px);
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-box:hover img {
    transform: scale(1.08);
}

.hero-title {
    font-family: var(--font-expressive);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--passion-primary);
    margin-bottom: var(--space-md);
    background: linear-gradient(120deg, var(--passion-primary), var(--energy-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--warmth-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.primary-cta {
    font-family: var(--font-expressive);
    font-size: 1.1rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(199, 41, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.primary-cta::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 ease, height 0.6s ease;
}

.primary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(199, 41, 99, 0.5);
}

.secondary-cta {
    font-family: var(--font-expressive);
    font-size: 1.1rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    color: var(--passion-primary);
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid var(--passion-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: var(--passion-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.content-section {
    padding: var(--space-xxl) var(--space-lg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: var(--font-expressive);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--passion-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--passion-primary), var(--energy-accent));
    border-radius: 3px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--warmth-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-breath);
    margin-top: var(--space-lg);
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--passion-primary), var(--energy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(199, 41, 99, 0.2);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--passion-primary);
    margin-bottom: var(--space-md);
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.info-card:hover .card-icon {
    transform: rotate(360deg) scale(1.2);
}

.card-title {
    font-family: var(--font-expressive);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-slate);
    margin-bottom: var(--space-sm);
}

.card-text {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.7;
}

.horizontal-scroll-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--passion-primary) var(--cloud-white);
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--cloud-white);
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--passion-primary), var(--energy-accent));
    border-radius: 10px;
}

.scroll-cards-container {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-sm);
    min-width: min-content;
}

.scroll-card {
    flex: 0 0 350px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(199, 41, 99, 0.25);
}

.scroll-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scroll-card:hover .scroll-card-image {
    transform: scale(1.1);
}

.scroll-card-content {
    padding: var(--space-md);
}

.scroll-card-title {
    font-family: var(--font-expressive);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--passion-primary);
    margin-bottom: var(--space-xs);
}

.scroll-card-description {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

.sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--grid-breath);
    margin-top: var(--space-lg);
}

.main-content-area {
    background: #ffffff;
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sidebar-supplementary {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-widget {
    background: linear-gradient(135deg, #ffffff 0%, var(--cloud-white) 100%);
    border-radius: 16px;
    padding: var(--space-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--passion-primary);
}

.widget-title {
    font-family: var(--font-expressive);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--passion-primary);
    margin-bottom: var(--space-sm);
}

.widget-content {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

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

.widget-list li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(199, 41, 99, 0.1);
    transition: all 0.3s ease;
}

.widget-list li:hover {
    padding-left: var(--space-xs);
    color: var(--passion-primary);
}

.widget-list a {
    color: #4A5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-list a:hover {
    color: var(--passion-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 41, 99, 0.85), rgba(235, 107, 218, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-expressive);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.testimonial-container {
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
    border-radius: 30px;
    padding: var(--space-xxl) var(--space-lg);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonial-container::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 30px;
    font-size: 20rem;
    font-family: Georgia, serif;
    opacity: 0.1;
    line-height: 1;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

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

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-expressive);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.testimonial-position {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-label {
    font-family: var(--font-expressive);
    font-size: 1rem;
    font-weight: 600;
    color: var(--passion-primary);
    display: block;
    margin-bottom: var(--space-xs);
    transition: all 0.3s ease;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-clean);
    font-size: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: var(--cloud-white);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--passion-primary);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(199, 41, 99, 0.15);
    transform: translateY(-2px);
}

.form-input:focus + .form-label,
.form-textarea:focus + .form-label,
.form-select:focus + .form-label {
    color: var(--energy-accent);
    transform: translateY(-3px);
}

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

.submit-btn {
    font-family: var(--font-expressive);
    font-size: 1.2rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-xl);
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(199, 41, 99, 0.4);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(199, 41, 99, 0.5);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: var(--font-expressive);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--passion-primary);
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent 0%, var(--cloud-white) 100%);
}

.faq-question:hover {
    background: linear-gradient(90deg, var(--cloud-white) 0%, #ffffff 100%);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-md);
}

.faq-answer p {
    color: #4A5568;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--grid-breath);
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(199, 41, 99, 0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: var(--space-md);
}

.blog-meta {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--warmth-secondary);
    margin-bottom: var(--space-sm);
}

.blog-category {
    background: linear-gradient(135deg, var(--passion-primary), var(--energy-accent));
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-family: var(--font-expressive);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-slate);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-read-more {
    font-family: var(--font-expressive);
    font-weight: 600;
    color: var(--passion-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--energy-accent);
    gap: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--passion-primary), var(--energy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(199, 41, 99, 0.25);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-feature {
    color: #ffffff;
}

.pricing-badge {
    background: var(--energy-accent);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-family: var(--font-expressive);
    font-size: 2rem;
    font-weight: 800;
    color: var(--passion-primary);
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-family: var(--font-expressive);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-slate);
    margin-bottom: var(--space-xs);
}

.pricing-price-small {
    font-size: 1.2rem;
    font-weight: 400;
    color: #718096;
}

.pricing-description {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.pricing-feature {
    padding: var(--space-xs) 0;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.pricing-feature::before {
    content: '✓';
    color: var(--fresh-green);
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-cta {
    font-family: var(--font-expressive);
    font-size: 1.1rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(199, 41, 99, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: #ffffff;
    color: var(--passion-primary);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 41, 99, 0.4);
}

.footer-main {
    background: linear-gradient(135deg, var(--deep-slate) 0%, #1A202C 100%);
    color: #ffffff;
    padding: var(--space-xxl) var(--space-lg) var(--space-md);
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--passion-primary), var(--energy-accent));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: var(--max-canvas);
    margin: 0 auto var(--space-xl);
}

.footer-section h3 {
    font-family: var(--font-expressive);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--energy-accent);
}

.footer-section p {
    line-height: 1.8;
    color: #CBD5E0;
}

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

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--energy-accent);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--passion-primary), var(--energy-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(199, 41, 99, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0AEC0;
    font-size: 0.95rem;
}

.utility-spacer-sm { margin-top: var(--space-sm); }
.utility-spacer-md { margin-top: var(--space-md); }
.utility-spacer-lg { margin-top: var(--space-lg); }
.utility-spacer-xl { margin-top: var(--space-xl); }

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

.flex-row {
    display: flex;
    gap: var(--space-md);
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.flex-wrap { flex-wrap: wrap; }
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--passion-primary) 0%, var(--energy-accent) 100%);
}

.bg-white { background: #ffffff; }
.bg-cloud { background: var(--cloud-white); }

.shadow-sm { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12); }
.shadow-xl { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }

.rounded-sm { border-radius: 8px; }
.rounded-md { border-radius: 15px; }
.rounded-lg { border-radius: 25px; }
.rounded-full { border-radius: 9999px; }

.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

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

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 15px 40px rgba(199, 41, 99, 0.3);
}

@media screen and (max-width: 1100px) {
    :root {
        --type-base: 28px;
        --type-lg: 56px;
        --type-xl: 112px;
    }

    .primary-banner {
        grid-template-columns: 1fr;
        min-height: 70vh;
        padding: var(--space-xl) var(--space-md);
    }

    .hero-content-box {
        transform: translateX(0);
        order: 2;
    }

    .hero-image-box {
        transform: translateX(0) translateY(0);
        order: 1;
        margin-bottom: var(--space-md);
    }

    .sidebar-layout {
        grid-template-columns: 1fr;
    }

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

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

@media screen and (max-width: 800px) {
    :root {
        --type-base: 24px;
        --type-lg: 48px;
        --type-xl: 96px;
        --space-md: 20px;
        --space-lg: 40px;
        --space-xl: 60px;
        --space-xxl: 80px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--passion-primary), var(--warmth-secondary));
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        max-height: 600px;
        overflow: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--space-md) 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: var(--space-sm) var(--space-md);
    }

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .scroll-card {
        flex: 0 0 280px;
    }
}

@media screen and (max-width: 500px) {
    :root {
        --type-base: 20px;
        --type-lg: 40px;
        --type-xl: 80px;
        --space-sm: 15px;
        --space-md: 20px;
        --space-lg: 30px;
        --space-xl: 50px;
        --space-xxl: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
    }

    .scroll-card {
        flex: 0 0 240px;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}

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

@media print {
    .navbar,
    .mobile-menu-toggle,
    .footer-main {
        display: none;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    .primary-banner,
    .content-section {
        page-break-inside: avoid;
    }
}
