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

:root {
    --primary-color: #ec4899;
    --primary-dark: #db2777;
    --secondary-color: #f472b6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fef3f2;
    --bg-white: #ffffff;
    --gradient-1: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fbbf24 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --gradient-romantic: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(236, 72, 153, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(236, 72, 153, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(236, 72, 153, 0.2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
    overflow-x: hidden;
}

body {
    position: relative;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #ffffff 0%, #fef3f2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: box-shadow 0.2s ease;
    transform: translateZ(0);
    border-bottom: 1px solid rgba(236, 72, 153, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Unified Logo Styles */
.nav-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.nav-brand .logo-icon,
.footer-brand .logo-icon {
    font-size: 1.75rem;
    line-height: 1;
    display: inline-block;
}

.nav-brand .logo-text,
.footer-brand .logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.nav-brand .logo-text {
    color: var(--text-dark);
}

.footer-brand .logo-text {
    color: white;
}

.nav-brand .logo-highlight {
    color: var(--primary-color);
}

.footer-brand .logo-highlight {
    color: #ef4444;
}

.footer-brand {
    flex-shrink: 0;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 150px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-romantic);
    opacity: 0.15;
    z-index: 1;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    contain: strict;
    transform: translateZ(0);
    pointer-events: none;
}

.floating-hearts .heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.15;
    animation: float 25s infinite linear;
    pointer-events: none;
    transform: translateZ(0);
}

.floating-hearts .heart:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.floating-hearts .heart:nth-child(2) {
    left: 50%;
    animation-delay: 8s;
}

.floating-hearts .heart:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

.floating-hearts .heart:nth-child(4) {
    display: none;
}

@keyframes float {
    0% {
        transform: translate3d(0, 110vh, 0);
        opacity: 0;
    }
    5% {
        opacity: 0.15;
    }
    95% {
        opacity: 0.15;
    }
    100% {
        transform: translate3d(0, -10vh, 0);
        opacity: 0;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes rotate {
    from {
        transform: rotate3d(0, 0, 1, 0deg) translateZ(0);
    }
    to {
        transform: rotate3d(0, 0, 1, 360deg) translateZ(0);
    }
}

.hero .container {
    position: relative;
    z-index: 100;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    z-index: 101;
    transform: translateZ(0);
}

.hero-badge {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
    animation: gentlePulse 4s ease-in-out infinite;
    border: 1px solid rgba(236, 72, 153, 0.1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateZ(0);
    position: relative;
    z-index: 102;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
        box-shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
    }
    50% {
        transform: scale3d(1.02, 1.02, 1);
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    z-index: 102;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0.5;
    animation: expandLine 1s ease-out 0.8s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 0.5;
    }
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.gradient-text-2 {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite 0.5s;
}

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

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.gradient-text-2 {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite 0.5s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 102;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 102;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    border: 1px solid rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.trust-item:hover::before {
    width: 200px;
    height: 200px;
}

.trust-item:hover {
    transform: translate3d(0, -5px, 0) scale(1.05);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.25);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(236, 72, 153, 0.2);
}

.trust-icon {
    font-size: 1.25rem;
    animation: gentleBounce 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -3px, 0) scale(1.1);
    }
}

.hero-price {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 102;
}

.price-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(236, 72, 153, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.price-wrapper:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 25px 70px rgba(236, 72, 153, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border-color: rgba(236, 72, 153, 0.3);
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1;
}

.price-currency {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary-color);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4), 0 0 0 0 rgba(236, 72, 153, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    transform: translateZ(0);
}

.cta-button:hover {
    transform: translate3d(0, -3px, 0) scale(1.03);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5), 0 0 20px rgba(236, 72, 153, 0.3);
}

.cta-button:active {
    transform: translate3d(0, -1px, 0) scale(1.01);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 102;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    will-change: transform, background-color, color;
    letter-spacing: 0.02em;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button-secondary:hover::before {
    left: 0;
}

.cta-button-secondary:hover {
    transform: translate3d(0, -4px, 0) scale(1.05);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
    border-color: var(--primary-color);
}

.cta-button-secondary:active {
    transform: translate3d(0, -2px, 0) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 103;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.scroll-indicator:hover {
    color: var(--primary-dark);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.scroll-arrow {
    width: 3px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 3px;
    position: relative;
    animation: scrollDown 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    transform: translateZ(0);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

section:hover::before {
    opacity: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Use Cases Section */
.use-cases {
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    contain: layout style paint;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    border-color: var(--primary-color);
}

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

.use-case-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(236, 72, 153, 0.2));
}

.use-case-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.use-case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fef3f2 0%, #ffffff 50%, #fef3f2 100%);
    position: relative;
    overflow: hidden;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05), transparent);
    opacity: 0.6;
}

.decoration-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.decoration-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.decoration-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-icon-wrapper {
    margin-bottom: 1.5rem;
}

.about-icon {
    font-size: 4rem;
    display: inline-block;
    animation: gentleBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(236, 72, 153, 0.2));
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

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

.about-main-card {
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.15);
    margin-bottom: 3rem;
    position: relative;
    border: 2px solid rgba(236, 72, 153, 0.1);
    transform: translateZ(0);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.about-main-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-align: left;
    line-height: 2;
    font-weight: 400;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.about-mission {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 4rem;
    text-align: center;
    border: 2px solid rgba(236, 72, 153, 0.1);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1);
    position: relative;
}

.mission-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: gentleBounce 2s ease-in-out infinite;
}

.about-sub-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.founders-section {
    margin-top: 4rem;
}

.founders-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.founders {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.founder-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.15);
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    border: 2px solid rgba(236, 72, 153, 0.1);
    transform: translateZ(0);
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.founder-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 25px 70px rgba(236, 72, 153, 0.25);
    border-color: rgba(236, 72, 153, 0.3);
}

.founder-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-avatar {
    transform: scale(1.1);
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.founder-card:hover .avatar-ring {
    opacity: 0.3;
}

.founder-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.founder-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founder-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
    margin: 1rem auto;
    border-radius: 1px;
}

.founder-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    contain: layout style paint;
}

.service-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, var(--bg-light) 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    contain: layout style paint;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    border-color: var(--primary-color);
}

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

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Order Section */
.order {
    background: var(--bg-light);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.order-info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

.order-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.price-display {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(236, 72, 153, 0.15);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 20px 20px 0 0;
}

.price-label-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.price-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.price-currency-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-per {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.submit-button:active {
    transform: translateY(0);
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.whatsapp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.whatsapp-link::after {
    content: '💬';
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.whatsapp-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.whatsapp-link:hover::after {
    transform: scale(1.2) rotate(15deg);
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: #2a2a2a;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    opacity: 0.4;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    max-width: 300px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-align: left;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex-shrink: 0;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.social-icon:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-celebration {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
    pointer-events: none;
}

.celebration-heart {
    font-size: 1.5rem;
    animation: floatHeart 2s ease-in-out infinite;
    opacity: 0.8;
}

.celebration-heart:nth-child(1) {
    animation-delay: 0s;
}

.celebration-heart:nth-child(2) {
    animation-delay: 0.3s;
}

.celebration-heart:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 1;
    }
}

.modal-icon-wrapper {
    position: relative;
    display: inline-block;
    margin: 1.5rem auto 1.5rem;
    width: 100px;
    height: 100px;
}

.modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    position: relative;
    z-index: 2;
    animation: pulseIcon 2s ease-in-out infinite;
    flex-shrink: 0;
}

.modal-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
}

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

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

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    word-wrap: break-word;
}

.modal-message {
    margin: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.modal-main-text {
    color: var(--text-dark);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-warm-text {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-next-steps {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:hover {
    transform: translateX(3px);
}

.step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    min-width: 1.5rem;
    line-height: 1.2;
}

.step-item span:last-child {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.modal-signature {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-signature strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-top: 0.5rem;
}

.modal-button {
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
    width: auto;
    min-width: 200px;
    justify-content: center;
    white-space: nowrap;
}

.modal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modal-button:hover::before {
    left: 100%;
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.modal-button:active {
    transform: translateY(-1px);
}

.button-heart {
    font-size: 1.2rem;
    animation: bounceHeart 1s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-card {
        padding: 2.5rem 2rem;
    }

    .quote-icon {
        top: 1rem;
        left: 1.5rem;
        font-size: 4rem;
    }

    .about-main-text {
        font-size: 1.1rem;
        padding-left: 0.5rem;
        line-height: 1.8;
    }

    .about-mission {
        padding: 2rem 1.5rem;
    }

    .about-sub-text {
        font-size: 1.1rem;
    }

    .founders-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .founders {
        gap: 2rem;
    }

    .founder-card {
        min-width: 100%;
        padding: 2.5rem 2rem;
    }

    .founder-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .about-icon {
        font-size: 3rem;
    }

    .mission-icon {
        font-size: 2.5rem;
    }

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

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    section {
        padding: 60px 0;
    }

    .floating-hearts .heart {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }

    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .order-form {
        padding: 1.5rem;
    }

    .modal.show {
        padding: 10px;
        align-items: flex-start;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        max-height: 95vh;
        margin: 20px auto;
        border-radius: 20px;
    }

    .modal-close {
        top: 0.75rem;
        right: 1rem;
        font-size: 1.75rem;
    }

    .modal-celebration {
        top: 10px;
        gap: 0.5rem;
    }

    .celebration-heart {
        font-size: 1.2rem;
    }

    .modal-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 1rem auto 1rem;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .modal-icon-glow {
        width: 100px;
        height: 100px;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .modal-message {
        margin: 1.5rem 0;
    }

    .modal-main-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0;
    }

    .modal-warm-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .modal-next-steps {
        padding: 1.25rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .step-item {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }

    .step-icon {
        font-size: 1.25rem;
        min-width: 1.25rem;
    }

    .step-item span:last-child {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .modal-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .modal-signature {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .modal-signature strong {
        font-size: 1rem;
    }

    .modal-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
        width: 100%;
        max-width: 300px;
    }

    .price-display {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .price-label-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .price-currency-small {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-per {
        font-size: 1rem;
    }

    .price-note {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

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

    .price-wrapper {
        padding: 1.5rem 2rem;
        gap: 0.5rem;
    }

    .price-label {
        font-size: 0.875rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-unit {
        font-size: 0.9rem;
    }

    .hero-trust {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .trust-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .trust-icon {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 20px 120px;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        bottom: 15px;
        font-size: 0.7rem;
        gap: 8px;
    }

    .scroll-arrow {
        height: 25px;
        width: 2px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .use-case-card {
        padding: 2rem 1.5rem;
    }

    .use-case-icon {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-links {
        max-width: 100%;
    }

    .footer-social {
        align-self: flex-start;
    }

    .footer-watermark {
        font-size: clamp(3rem, 10vw, 6rem);
        bottom: 20px;
        opacity: 0.35;
    }

    .footer {
        padding: 3rem 0 5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-brand .logo-text {
        font-size: 1.5rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.875rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

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

    .footer-copyright {
        font-size: 0.75rem;
        padding-top: 1.5rem;
    }

    .footer-watermark {
        font-size: clamp(2.5rem, 8vw, 4rem);
        bottom: 15px;
        opacity: 0.3;
    }

    .footer {
        padding: 3rem 0 4rem;
    }
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

