/* ================================
   TYPOGRAPHY SYSTEM
   ================================ */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.2;
}

/* H1 - Hero/Main Headlines */
h1 {
    font-size: clamp(52px, 6vw, 84px);
    letter-spacing: -3px;
    margin-bottom: 16px;
}

/* H2 - Section Titles */
h2 {
    font-size: clamp(32px, 6vw, 44px);
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
}

/* Body Text */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: #ffffff;
    color: #0A0A0A;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

/* Large body text (subtitles/descriptions) */
.hero-subheadline {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 48px;
}

.subtitle,
.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    text-align: center;
}

/* Small labels */
.section-label,
.tier-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FF478C;
    margin-bottom: 16px;
}

/* Dark backgrounds */
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.hero-section h1,
.testimonial-section h2,
.cta-section h2,
.footer h2 {
    color: white;
}

.dark-bg p,
.dark-bg .subtitle,
.hero-section p,
.testimonial-section p,
.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   UTILITIES
   ================================ */

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Max Width Utilities */
.max-w-600 {
    max-width: 600px;
    margin: 0 auto;
}

.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}

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

.max-w-900 {
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}

.max-w-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

/* Spacing Utilities */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.my-40 {
    margin: 40px 0;
}

.my-60 {
    margin: 60px 0;
}

.my-80 {
    margin: 80px 0;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* ================================
   GLOBAL ELEMENTS
   ================================ */

/* Grid Background Pattern */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Accent Dots */
.accent-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FF478C;
    border-radius: 2px;
    animation: pulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 15%;
}

.dot-2 {
    top: 70%;
    bottom: auto;
    left: 12%;
    animation-delay: 1s;
}

.dot-3 {
    top: 35%;
    right: 10%;
    left: auto;
    animation-delay: 2s;
}

.dot-4 {
    top: auto;
    bottom: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary,
.nav-cta,
.submit-btn {
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 71, 140, 0.4);
    display: inline-block;
}

.btn-primary:hover,
.nav-cta:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 16px rgba(255, 71, 140, 0.4);
}

.btn-secondary,
.alt-btn {
    background: transparent;
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-white {
    background: white;
    color: #FF478C;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Button States */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.nav-logo-image {
    height: 40px;
    width: auto;
    transition: opacity 0.4s ease;
}

.nav-logo-white {
    position: absolute;
    left: 0;
    opacity: 1;
}

.nav-logo-black {
    opacity: 0;
}

.nav.scrolled .nav-logo-white {
    opacity: 0;
}

.nav.scrolled .nav-logo-black {
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    width: fit-content;
}

.nav.scrolled .nav-link {
    color: #666;
}

.nav-link:hover {
    color: #FF478C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF478C;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 12px 28px;
    font-size: 15px;
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.logo-mark {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    border-radius: 12px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 71, 140, 0.4);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 24px;
    height: 24px;
}

.grid-cell {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

.grid-cell.active {
    background: white;
}

.hero-headline {
    color: white;
}

.highlight {
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* ================================
   SECTIONS
   ================================ */

/* Stats Section */
.stats-section {
    padding: 140px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: clamp(64px, 6vw, 88px);
    font-weight: 700;
    color: #FF478C;
    letter-spacing: -3px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Value Comparison */
.comparison-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #0A0A0A;
    line-height: 1.2;
}

.value-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.value-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.value-card.winner {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    color: #fff;
    border-color: #0A0A0A;
}

.value-card.winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.card-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 102, 0.1);
    color: #FF478C;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.value-card.winner .card-badge {
    background: #FF478C;
    color: #ffffff;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 16px;
    opacity: 0.6;
}

.value-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.metric-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 6px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.metric-value.highlight {
    color: #FF478C;
}

.metric-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 4px;
}

.card-footer {
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.value-card.winner .card-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.comparison-cta {
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 48px 40px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.comparison-cta p {
    color: #ffffff
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff
}

.cta-highlight {
    color: #FF478C;
}

/* Services Section */
.services-section {
    padding: 140px 0;
    background: #ffffff;
}

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

.service-card {
    text-align: center;
    padding: 50px 30px;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 71, 140, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 71, 140, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    border-radius: 14px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.lucide {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
    color: white;
}

.service-card:hover .service-icon {
    box-shadow: 0 8px 32px rgba(255, 71, 140, 0.6);
    transform: scale(1.1);
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #0A0A0A;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover .service-name {
    color: white;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Projects Section */
.projects-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

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

.project-card {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 1px solid #f0f0f0;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 0;
    pointer-events: none;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

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

.project-title {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #0A0A0A;
}

.project-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stat-description {
    font-size: 16px;
    color: #666;
    text-align: left;
    max-width: 200px;
    line-height: 1.4;
}

/* NEW SECTION*/
.value-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section 1: Before/After (Emotional) */
.hero-comparison {
    text-align: center;
}

.hero-comparison .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: left;
}

.comparison-card.with {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    border-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.comparison-card.with::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.card-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 71, 140, 0.1);
    color: #FF478C;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.comparison-card.with .card-label {
    background: #FF478C;
    color: white;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.comparison-list li::before {
    content: '✕';
    font-size: 18px;
    font-weight: 700;
    color: #666;
    flex-shrink: 0;
}

.comparison-card.with .comparison-list li::before {
    content: '✓';
    color: #FF478C;
}

.comparison-card.with .comparison-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Section 2: Detailed Table */
.detailed-comparison {
    margin-top: 120px;
}

.detailed-comparison h3 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
}

/* CTA Section */
.value-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.value-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-cta h3 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.value-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.value-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 71, 140, 0.4);
    position: relative;
    z-index: 1;
}

.value-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 71, 140, 0.6);
}

/* Testimonial Section */
.testimonial-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: white;
    margin-bottom: 50px;
}

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

.author-image {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF478C, #FF6B9D);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
}

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

/* Process Section */
.process-section {
    padding: 140px 0;
    background: #ffffff;
}

.trust-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 71, 140, 0.08);
    border-radius: 100px;
    color: #FF478C;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Pricing Cards (Stacked) */
.pricing-header {
    text-align: center;
    padding: 100px 20px 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cards-container {
    padding: 20px;
    position: relative;
}

.cards-wrapper {
    margin: 0 auto;
    position: relative;
}

.tier-card {
    position: sticky;
    top: 100px;
    margin-bottom: 40px;
    border-radius: 32px;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.tier-card:nth-child(1) {
    z-index: 1;
}

.tier-card:nth-child(2) {
    z-index: 2;
}

.tier-card:nth-child(3) {
    z-index: 3;
}

.tier-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* CORE visual */
.core-grid {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    opacity: 0.12;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    border-radius: 20px;
    box-shadow: 0 0 100px rgba(255, 71, 140, 0.6), 0 0 200px rgba(255, 71, 140, 0.3);
}

/* GRID visual - 2x2 */
.grid-background {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    width: 270px;
    height: 270px;
    opacity: 0.1;
}

.grid-cell {
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(255, 71, 140, 0.5), 0 0 160px rgba(255, 71, 140, 0.25);
}

/* MATRIX visual - 3x3 */
.matrix-background {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    width: 360px;
    height: 360px;
    opacity: 0.08;
}

.matrix-cell {
    background: linear-gradient(135deg, #FF478C 0%, #FF6B9D 100%);
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(255, 71, 140, 0.4), 0 0 120px rgba(255, 71, 140, 0.2);
}

.tier-content {
    position: relative;
    z-index: 10;
    padding: 80px 60px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tier-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    letter-spacing: -4px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 0.9;
}

.tier-price {
    font-size: 18px;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.tier-description {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
}

.tier-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 700px;
}

.tier-features li {
    display: flex;
    align-items: center;
    padding-left: 28px;
    color: #e0e0e0;
    font-size: 15px;
    position: relative;
}

.tier-features li::before {
    content: '▪︎';
    position: absolute;
    left: 0;
    color: #FF478C;
    font-size: 22px;
    font-weight: 700;
}

.why-choose-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 140px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
}

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

/* ================================
   FORMS
   ================================ */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-sentence {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 3;
}

.form-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-label {
    color: #0a0a0a;
    font-size: 18px;
    white-space: nowrap;
}

.form-input,
.form-select {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #FF478C;
}

.form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
    transition: border-color 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #FF478C;
}

.form-textarea::placeholder {
    color: #999;
}

.calendar-embed {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    min-height: 600px;
}

.calendar-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ================================
   FAQ
   ================================ */

.faq-section {
    padding: 0 0 120px 0;
    background: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    background: none;
    border: none;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: #FF478C;
}

.faq-icon {
    font-size: 28px;
    font-weight: 700;
    transition: transform 0.3s;
    color: #000;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 71, 140, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    margin-bottom: 64px;
}

.footer-content h1 {
    color: #fff;
    font-size: 64px;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

.footer-cta {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}

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

.footer-tagline {
    font-size: 18px;
    text-align: start;
    color: rgba(255, 255, 255, 0.95);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-logo {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-bottom: 20px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-text {
    font-size: 18px;
    color: #999;
    position: relative;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 40px;
    }

    .nav-links {
        gap: 30px;
    }

    .project-card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: block;
        padding: 10px 24px;
        font-size: 14px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .container {
        padding: 0 30px;
    }

    h2 {
        font-size: 36px;
    }

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

    .dot-1 {
        top: 10%;
        left: 10%;
    }

    .dot-2 {
        top: auto;
        bottom: 25%;
        left: 10%;
    }

    .dot-3 {
        top: 25%;
        right: 10%;
        left: auto;
    }

    .dot-4 {
        top: auto;
        bottom: 10%;
        right: 10%;
    }

    .accent-dot {
        border-radius: 1px;
        width: 8px;
        height: 8px;
    }

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

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

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

    .comparison-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .project-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 60px 40px;
    }

    .testimonial-quote {
        font-size: 22px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .form-card {
        padding: 32px 24px;
        margin: -20px;
    }

    .calendar-embed iframe {
        height: 800px;
    }

    .cta-section {
        padding: 80px 20px;
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }

    .cta-section {
        margin-top: 0px;
        margin-bottom: 80px;
    }

    .stats-section,
    .services-section,
    .projects-section,
    .testimonial-section,
    .process-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 30px;
    }

    .value-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .value-section {
        padding: 80px 0;
    }

    .comparison-card {
        padding: 50px 20px;
        text-align: left;
    }

    .comparison-cta {
        padding: 32px 24px;
    }

    .tier-card {
        top: 100px;
    }

    .tier-card:nth-child(2) {
        top: 100px;
    }

    .tier-card:nth-child(3) {
        top: 100px;
    }

    .tier-content {
        padding: 60px 30px;
        min-height: 500px;
    }

    .core-grid,
    .grid-background,
    .matrix-background {
        width: 350px;
        height: 350px;
    }

    .core-center {
        width: 100px;
        height: 100px;
    }

    .tier-features {
        grid-template-columns: 1fr;
    }
}