:root {
    --primary: #0f0f0f;
    --secondary: #f5f3f0;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --border: #e5e5e5;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 700; }
.text-italics { font-family: 'EB Garamond', serif; font-style: italic; font-weight: 400; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
.inner-container { position: relative; z-index: 2; }
.grid-lines { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1200px; height: 100%; pointer-events: none; z-index: 1; }
.grid-line { position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05), transparent); }
.grid-line-left { left: 0; }
.grid-line-right { right: 0; }

button{
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    outline: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: white; border-color: var(--text); }
.btn-filled { background: var(--accent); color: white; }
.btn-filled:hover { background: var(--accent-light); transform: translateY(-2px); }

.hero { min-height: 100vh; padding: 70px 0 80px; position: relative; overflow: hidden; }
.hero-flex { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.hero-left { flex: 1; max-width: 600px; }
.hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); }
.logo-icon { width: 40px; height: 40px; background: var(--gradient-1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 24px; height: 24px; color: white; }
.logo-text { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 700; }
.hero-buttons { display: flex; gap: 12px; }
.hero-content { margin-top: 20px; }
.hero-content h1 { font-size: clamp(48px, 8vw, 70px); line-height: 1.1; margin-bottom: 24px; }
.hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 8px; }

.member-card {
    background-image:url("../images/svgviewer-output.svg");
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.member-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 100px;
}
.member-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.member-card-header { font-family: 'Manrope', sans-serif; font-size: 48px; color: white; line-height: 1.1; font-weight: 700; }
.member-card-p { color: rgba(255,255,255,0.7); font-size: 16px; margin: 16px 0 24px; }
.member-card .btn { width: 100%; justify-content: center; background: white; color: var(--primary); font-size: 16px; padding: 16px 32px; }
.member-card .btn:hover { background: #f0f0f0; }
.member-call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.member-call:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.member-call-left { display: flex; align-items: center; gap: 12px; }
.member-call-avatar { width: 40px; height: 40px; background: var(--gradient-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.member-call-text { font-size: 14px; }
.member-call-schedule { font-size: 12px; color: rgba(255,255,255,0.5); }
.member-card-mockup {
    position: absolute;
    top: 0px;
    right: -18px;
    width: 204px;
    height: 220px;
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border-radius: 16px;
    transform: rotate(-6deg);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
    animation: cardFloat 6s ease-in-out infinite;
}
.mockup-code { padding: 30px; font-family: 'Fira Code', monospace; font-size: 12px; color: #333; line-height: 1.4; }
.mockup-code .comment { color: #6a9955; }
.mockup-code .keyword { color: #569cd6; }
.mockup-code .string { color: #ce9178; }
.mockup-code .function { color: #dcdcaa; }

section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 40px; }
#how-it-works .section-header{text-align: center; margin-bottom: 80px; display: flex; justify-content: center;}
#how-it-works .section-header h2{ width: 60%;}
.eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.section-header h2 { font-size: clamp(36px, 6vw, 60px); line-height: 1.1; margin-bottom: 24px;}
#services h2{max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.section-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.hiw { background: white; }
.hiw__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hiw__card { border-radius: 24px; position: relative; overflow: hidden; min-height: 520px; }
.hiw__card:first-child {
    background-image:url("../images/orange-bg.svg");
}
.hiw__card:first-child::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 10% 90%, rgb(246 59 183 / 70%) 0% 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 90% 20%, rgba(236, 72, 153, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.hiw__card-image { position: absolute; top: 18px; left: 76px; width: 100%; height: calc(100% - 120px); object-fit: contain; z-index: 2; }
.hiw__card._2 { background-image:url("../images/svgviewer-output.svg");}
.hiw__card._2::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 20%, rgba(168, 85, 247, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(236, 72, 153, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.hiw__card._3 { background-image:url("../images/orange-blue-combo.svg"); }
.hiw__card._3::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.hiw__card-gradient { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 10; }
.hiw__card-header { font-family: 'Manrope', sans-serif; font-size: 24px; margin-bottom: 12px; color: white; font-weight: 600; }
.hiw__card-gradient._2 .hiw__card-header, .hiw__card-gradient._3 .hiw__card-header { color: white; }
.hiw__card-p { font-size: 16px; line-height: 1.5; color: var(--text-muted); }
.hiw__card-p.text-black { color: white; }
.hiw__card-gradient._2 .hiw__card-p, .hiw__card-gradient._3 .hiw__card-p { color: rgba(255, 255, 255, 0.85); }

.receive__image-wrapper { position: absolute; top: 0; left: 0; right: 0; bottom: 120px; overflow: hidden; }
.marquees { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 30px; gap: 16px; }
.marquee-1 { width: 100%; overflow: hidden; }
.marquee-1-inner { display: flex; width: max-content; animation: marqueeScroll 20s linear infinite; }
.marquee-1-inner._6886 { animation-direction: reverse; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-1-element { display: flex; gap: 12px; padding-right: 12px; }
.service-pill { background: white; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; white-space: nowrap; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.request__block {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px; background: #1a1a1a; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    z-index: 5; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}
.request__block svg { width: 40px; height: 40px; }
.div-block-2 { position: absolute; top: 20px; left: 0; right: 0; bottom: 140px; display: flex; align-items: center; justify-content: center; }
.stack { position: relative; width: 280px; height: 280px; cursor: pointer; transition: transform 0.3s ease; }
.stack:hover { transform: scale(1.02); }
       .front-design,
.middle-design,
.bottom-design {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.front-design::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 24px; background: rgba(255,255,255,0.25); border-radius: 6px; }
.middle-design { top: 30px; left: 50%; transform: translateX(-50%); z-index: 2; background-image: url("../images/portfolio-1.svg"); }
.middle-design::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 24px; background: rgba(255,255,255,0.25); border-radius: 6px; }
.bottom-design { top: 50px; left: 20px; transform: rotate(-23deg); z-index: 1; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); }
.bottom-design::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; height: 24px; background: rgba(255,255,255,0.25); border-radius: 6px; }
.stack:hover .front-design { transform: rotate(15deg) translateX(30px) translateY(-20px); }
.stack:hover .middle-design { transform: translateX(-50%) translateY(-10px) scale(1.05); }
.stack:hover .bottom-design { transform: rotate(-30deg) translateX(-30px) translateY(10px); }

.front-design {
    top: 10px;
    right: 20px;
    transform: rotate(9deg);
    z-index: 3;
    overflow: hidden;
    background: none;
}

.front-design img,
.middle-design img,
.bottom-design img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.front-design::before,
.middle-design::before,
.bottom-design::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 24px;
    background: rgba(255,255,255,0.25);
    border-radius: 6px;
    z-index: 2;
}

.logos-row { display: flex; justify-content: center; align-items: center; gap: 48px; padding: 60px 0; opacity: 0.9; flex-wrap: wrap; }
.logos-row img { height: 40px; filter: grayscale(1); opacity: 0.7; transition: all 0.3s ease; }
.logos-row img:hover { filter: grayscale(0); opacity: 1; }

.services { background: var(--secondary); }
.story-text { font-size: 20px; color: var(--text-muted); max-width: 700px; margin: 0 auto 0; text-align: center; line-height: 1.6; border: 2px dashed #d1c2c7; border-radius: 20px; padding: 32px; }
.dev-img {display: flex; justify-content: center;}
.benefits-slider-container { position: relative; width: 100%; overflow: hidden; padding: 20px 0; }
.benefits-slider { display: flex; gap: 24px; transition: transform 0.5s ease; cursor: grab; }
.benefits-slider:active { cursor: grabbing; }
.benefit-card { flex: 0 0 280px; min-width: 280px; }
.benefit-card-image {
    width: 100%; height: 200px; border-radius: 20px; position: relative; overflow: hidden;
    margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
}
.benefit-card-1 .benefit-card-image { background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 50%, #4776e6 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
.benefit-card-2 .benefit-card-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; animation-delay: -1s; }
.benefit-card-3 .benefit-card-image { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #4776e6 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; animation-delay: -2s; }
.benefit-card-4 .benefit-card-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; animation-delay: -3s; }
.benefit-card-5 .benefit-card-image { background: linear-gradient(135deg, #00f260 0%, #0575e6 50%, #f093fb 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; animation-delay: -4s; }
.benefit-card-6 .benefit-card-image { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 50%, #4776e6 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; animation-delay: -5s; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.benefit-card-image::before {
    content: ''; position: absolute; width: 150%; height: 150%;
    background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.2) 0%, transparent 40%);
    animation: blobMove 10s ease-in-out infinite;
}
@keyframes blobMove { 0%, 100% { transform: translate(-10%, -10%) rotate(0deg); } 33% { transform: translate(5%, -5%) rotate(120deg); } 66% { transform: translate(-5%, 5%) rotate(240deg); } }
.benefit-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.9); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; position: relative; z-index: 2; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.benefit-header { font-family: 'Manrope', sans-serif; font-size: 22px; margin-bottom: 12px; color: var(--text); font-weight: 700; }
.benefit-p { color: var(--text-muted); font-size: 15px; line-height: 1.5; }
.slider-nav { display: flex; gap: 12px; margin-bottom: 35px; justify-content: center; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; background: white; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-btn:hover svg { stroke: white; }
.slider-btn svg { width: 20px; height: 20px; stroke: var(--text); transition: stroke 0.3s ease; }

.testimonials { background: #e8e6e3; padding: 120px 0; }
.testimonials h2{ text-align: center;}
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; }
.testimonial-card { text-align: center; padding: 40px; }
.testimonial-quote { font-family: 'EB Garamond', serif; font-size: 36px; font-style: italic; line-height: 1.3; margin-bottom: 40px; color: var(--text); font-weight: 400; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; flex-direction: column; align-items: center; }
.testimonial-logo { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 24px; font-weight: 700; color: var(--text); }
.testimonial-logo svg { width: 32px; height: 32px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 20px; }
.testimonial-info { text-align: center; }
.testimonial-name { font-weight: 600; font-size: 16px; color: var(--text); }
.testimonial-role { color: var(--text-muted); font-size: 14px; }

.services-detail { background: var(--secondary); }
.services-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.recent-work-card { background: white; border-radius: 24px; padding: 0; overflow: hidden; }
.screenshots-marquee { width: 100%; height: 280px; position: relative; transform: rotate(9deg);}
.screenshots-track { display: flex; gap: 16px; animation: scrollScreenshots 8s linear infinite; padding: 20px 0; width: max-content; }
@keyframes scrollScreenshots { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.screenshot-item { flex: 0 0 auto; height: 240px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
.screenshot-placeholder { width: 280px; height: 240px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 14px; position: relative; overflow: hidden; }
.screenshot-1 { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); }
.screenshot-2 { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #f8b500 100%); }
.screenshot-3 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.screenshot-4 { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.screenshot-5 { background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%); }
.screenshot-6 { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.screenshot-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
.screenshot-content .mock-browser { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 8px; margin-bottom: 12px; }
.screenshot-content .mock-dots { display: flex; gap: 4px; margin-bottom: 8px; }
.screenshot-content .mock-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.screenshot-content .mock-url { background: rgba(255,255,255,0.2); border-radius: 4px; height: 20px; width: 120px; }
.achievement-cards { display: flex; gap: 16px; padding: 24px; }
.achievement-card { flex: 1; background: white; border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.achievement-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.achievement-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.achievement-icon-1 { background: #ffeaa7; }
.achievement-icon-2 { background: #dfe6e9; }
.achievement-company { font-size: 14px; font-weight: 500; color: var(--text); }
.achievement-title { font-weight: 600; font-size: 15px; line-height: 1.3; margin-bottom: 12px; color: var(--text); }
.achievement-source { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.achievement-source-icon { width: 20px; height: 20px; background: #ff6154; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 10px; font-weight: bold; }
.recent-work-info { padding: 0 24px 24px; }
.recent-work-header { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 700; }
.recent-work-p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; }
.services-showcase { background: white; border-radius: 24px; padding: 48px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.smiley-decoration { position: absolute; width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.smiley-pink { top: -30px; right: -30px; background: #ff0080; }
.smiley-blue { bottom: -30px; right: 60px; background: #2563eb; }
.smiley-face { font-size: 48px; color: black; transform: rotate(-15deg); }
.smiley-blue .smiley-face { transform: rotate(15deg); }
.service-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 2; max-width: 400px; margin-bottom: 40px; }
.service-tag { background: white; border: 1px solid var(--border); color: var(--text); padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 500; transition: all 0.3s ease; }
.service-tag:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }
.services-showcase-header { font-family: 'Manrope', sans-serif; font-size: 36px; color: var(--text); margin-bottom: 12px; position: relative; z-index: 2; line-height: 1.2; font-weight: 700; }
.services-showcase-p { color: var(--text-muted); font-size: 18px; position: relative; z-index: 2; max-width: 280px; }

.pricing { background: #e8e6e3; padding: 120px 0; }
.pricing-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.join-wrapper { display: flex; flex-direction: column; align-items: flex-start; }
.join-card-container { position: relative; width: 100%; height: 380px; margin-bottom: 40px; }
.join-card {
    position: absolute; top: 0; left: 0;  
    transform: rotate(-3deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
    animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-12deg) translateY(-8px); } }
.join-card:hover { transform: rotate(0deg) scale(1.02) translateY(-5px); }
.join-badge { display: inline-flex; align-items: center; gap: 10px; background: #1a1a1a; color: white; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.join-badge-dot { width: 12px; height: 12px; background: #facc15; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.join-header { font-family: 'EB Garamond', serif; font-size: clamp(48px, 8vw, 72px); line-height: 1.1; color: var(--text); font-weight: 700; }
.pricing-card p{ font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);}
.pricing-card { background: var(--secondary); border-radius: 24px; padding: 40px; position: relative; }
.pricing-card-top { }
.pricing-plan-name {     font-size: 1.125rem; font-weight: 600; margin-bottom: 4px; }
.pricing-pause-badge { background: white; border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-amount { display: flex; align-items: baseline; gap: 8px; border-bottom: 1px dashed #dfdfdf; padding-bottom: 10px;}
.pricing-price { font-family: 'EB Garamond', serif; font-size: 60px; font-weight: 800; }
.pricing-period { color: var(--text-muted); font-size: 16px; }
.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; padding-top: 30px; }
.pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pricing-feature::before { content: '✓'; width: 20px; height: 20px; color: #10b981; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; font-weight: 600; }
.pricing-included { background: white; padding: 16px; border-radius: 12px; margin-bottom: 24px; }
.pricing-included-header { font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.pricing-included-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pricing-included-item { font-size: 13px; color: var(--text-muted); }
.pricing-cta { display: flex; flex-direction: column; gap: 16px; }
.pricing-cta .btn { width: 100%; justify-content: center; background: var(--primary); color: white; padding: 18px 32px; font-size: 16px; }
.pricing-cta .btn:hover { background: #2a2a2a; }
.features-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.feature-box { border: 2px dashed #d1c2c7; border-radius: 20px; padding: 32px; }
.feature-box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feature-box-icon { width: 32px; height: 32px; }
.feature-box-title { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 700; }
.feature-box-p { color: var(--text-muted); font-size: 15px; }

/* FAQ Section */
.faq { background: #e8e6e3; padding: 120px 0; }
.faq-flex { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.faq-left h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.2; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; font-weight: 500; font-size: 17px; transition: color 0.3s ease; color: var(--text); }
.faq-question:hover { color: var(--text-muted); }
.faq-arrow { width: 20px; height: 20px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); color: var(--text-muted); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { 
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted); 
    font-size: 15px; 
    line-height: 1.7; 
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0;
}
.faq-item.active .faq-answer { 
    max-height: 300px;
    opacity: 1;
    padding: 0 0 24px;
}
.faq-right { position: sticky; top: 40px; }
.faq-contact-card {
    background-image: url("../images/svgviewer-output.svg");
    border-radius: 24px; padding: 40px 32px; text-align: left; position: relative; overflow: hidden;
}
.faq-contact-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%);
    pointer-events: none;
}
.faq-contact-avatar {
    width: 100px; height: 100px; background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 50%; margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; border: 4px solid rgba(255,255,255,0.2); box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.faq-contact-avatar::after { content: '😊'; font-size: 50px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.faq-contact-header { font-family: 'Manrope', sans-serif; font-size: 32px; color: white; margin-bottom: 24px; position: relative; z-index: 2; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.1); font-weight: 700; }
.faq-contact-card .btn { position: relative; z-index: 2; width: 100%; justify-content: center; background: white; color: var(--text); padding: 16px 32px; font-size: 15px; font-weight: 600; }
.faq-contact-card .btn:hover { background: #f5f5f5; transform: translateY(-2px); }
.faq-email-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; margin-top: 20px; color: white; text-decoration: none; transition: all 0.3s ease; position: relative; z-index: 2; }
.faq-email-link:hover { opacity: 0.9; }
.faq-email-link .member-call-left { display: flex; align-items: center; gap: 12px; }
.faq-email-link .email-icon { width: 24px; height: 24px; color: #facc15; }
.faq-email-link .member-call-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.faq-email-link .member-call-schedule { font-size: 14px; color: #facc15; font-weight: 500; }
.faq-email-link .arrow-circle { width: 36px; height: 36px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.faq-email-link:hover .arrow-circle { transform: translateX(4px); }
.faq-email-link .arrow-circle svg { width: 16px; height: 16px; color: var(--text); }

.footer { background: var(--primary); color: white; padding: 120px 0 60px; }
.footer-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-left { max-width: 500px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 40px; }
.footer-logo img{ width: 140px;}
.footer-logo-icon { width: 40px; height: 40px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 24px; height: 24px; color: var(--primary); }
.footer-logo-text { font-family: 'Manrope', sans-serif; font-size: 24px; color: white; font-weight: 700; }
.footer-content h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.2; margin-bottom: 24px; }
.footer-content p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; }
.footer-links { display: flex; gap: 24px; margin-top: 40px; }
.footer-link { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-link:hover { color: white; }
.footer-cta { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 24px; }
.footer-cta-header { font-family: 'Manrope', sans-serif; font-size: 24px; margin-bottom: 16px; font-weight: 700; }
.footer-cta-p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 24px; }
.footer-cta .btn { width: 100%; justify-content: center; margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-text { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-email-link { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 16px; margin-top: 16px; color: white; text-decoration: none; transition: all 0.3s ease; }
.footer-email-link:hover { background: rgba(255,255,255,0.1); }

/* Cal.com Embed Styles */
.footer-smileys { margin: 60px 0 15px; }
.smiley-faces-img { height: 60px; }
.footer-cta-notice { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; margin-bottom: 24px; }
.footer-cta-notice p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; line-height: 1.6; }
.footer-email-highlight { color: #ec4899; text-decoration: none; font-weight: 500; }
.footer-email-highlight:hover { text-decoration: underline; }
.cal-embed-wrapper { background: rgba(255,255,255,0.03); border-radius: 16px; min-height: 500px; overflow: hidden; }
.cal-embed-wrapper #my-cal-inline { min-height: 500px; }

@media (max-width: 1024px) {
    .hero-flex { flex-direction: column; }
    .member-card { min-width: 100%; }
    .hiw__grid { grid-template-columns: 1fr; }
    .testimonial-grid, .services-flex, .pricing-flex, .footer-flex { grid-template-columns: 1fr; }
    .faq-flex { grid-template-columns: 1fr; gap: 40px; }
    .faq-right { position: static; order: -1; }
    .faq-contact-card { max-width: 400px; }
    .features-row { grid-template-columns: 1fr; }
    .benefit-card { flex: 0 0 260px; min-width: 260px; }
    .join-card { width: 400px; height: 270px; }
    .join-card-container { height: 320px; }
}
@media (max-width: 768px) {
    .hero-top { flex-direction: column; align-items: flex-start; gap: 24px; }
    .hero-buttons { flex-wrap: wrap; }
    .pricing-features { grid-template-columns: 1fr; }
    .member-card-mockup { display: none; }
    .benefit-card { flex: 0 0 240px; min-width: 240px; }
    .benefit-card-image { height: 180px; }
    .slider-nav { margin-top: 24px; }
    .achievement-cards { flex-direction: column; }
    .screenshots-marquee { height: 220px; }
    .screenshot-placeholder { width: 220px; height: 180px; }
    .smiley-decoration { width: 80px; height: 80px; }
    .smiley-face { font-size: 32px; }
    .services-showcase-header { font-size: 28px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 60px; }
    .testimonial-quote { font-size: 26px; }
    .join-card { width: 320px; height: 220px; }
    .join-card-container { height: 280px; }
    .join-header { font-size: 42px; }
    .faq-contact-card { max-width: 100%; padding: 32px 24px; }
    .faq-contact-header { font-size: 26px; }
    .faq-contact-avatar { width: 80px; height: 80px; }
    .faq-contact-avatar::after { font-size: 40px; }
    .cal-embed-wrapper { min-height: 450px; }
    .footer-smileys { margin: 24px 0 16px; }
    .smiley-faces-img { height: 48px; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeInUp 0.8s ease forwards; }

        .terms-hero {
            padding: 40px 0 0px;
            position: relative;
        }
        .terms-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
        }
        .terms-header {
            text-align: center;
            padding: 60px 0 40px;
        }
        .terms-header h1 {
            font-size: clamp(36px, 6vw, 56px);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .terms-header p {
            color: var(--text-muted);
            font-size: 16px;
        }
        .terms-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0 !important;
        }
        .terms-intro {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 48px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--border);
        }
        .terms-section {
            margin-bottom: 40px;
            padding: 0 !important;
        }
        .terms-section h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
        }
        .terms-section p,
        .terms-section li {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .terms-section ul {
            list-style: none;
            padding-left: 0;
        }
        .terms-section ul li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
        }
        .terms-section ul li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--accent);
            font-weight: bold;
        }
        .terms-section a {
            color: var(--accent);
            text-decoration: none;
        }
        .terms-section a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .terms-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
            .hero-buttons {
                flex-wrap: wrap;
            }
        }

        .privacy-hero {
            padding: 40px 0 0;
            position: relative;
        }
        .privacy-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
        }
        .privacy-header {
            text-align: center;
            padding: 60px 0 40px;
        }
        .privacy-header h1 {
            font-size: clamp(36px, 6vw, 56px);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .privacy-header p {
            color: var(--text-muted);
            font-size: 16px;
        }
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }
        .privacy-intro {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 48px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--border);
        }
        .privacy-section {
            margin-bottom: 40px;
            padding: 0 !important;
        }
        .privacy-section h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
        }
        .privacy-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 20px 0 12px;
            color: var(--text);
        }
        .privacy-section p,
        .privacy-section li {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .privacy-section ul,
        .privacy-section ol {
            padding-left: 0;
            list-style: none;
        }
        .privacy-section ul li,
        .privacy-section ol li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
        }
        .privacy-section ul li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--accent);
            font-weight: bold;
        }
        .privacy-section ol {
            counter-reset: list-counter;
        }
        .privacy-section ol li {
            counter-increment: list-counter;
        }
        .privacy-section ol li::before {
            content: counter(list-counter) ".";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 600;
        }
        .privacy-section a {
            color: var(--accent);
            text-decoration: none;
        }
        .privacy-section a:hover {
            text-decoration: underline;
        }
        .privacy-highlight {
            background: #f8f9fa;
            padding: 20px 24px;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            margin: 16px 0;
        }
        .privacy-highlight p {
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .privacy-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
            .hero-buttons {
                flex-wrap: wrap;
            }
        }
/* =====================================
   MOBILE VIEW – CLEAN & FINAL FIX
   ===================================== */
@media (max-width: 768px) {

  /* GLOBAL SAFETY */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  *, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  .container {
    padding: 0 16px;
    overflow-x: hidden;
  }

  section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .hero-flex {
    flex-direction: column;
    gap: 40px;
  }

  .hero-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  /* MEMBER / SUBSCRIBE CARD */
  .member-card {
    width: 100%;
    min-width: 0;
    padding: 24px;
    overflow: hidden;
  }

  .member-badge {
    margin-bottom: 40px;
  }

  .member-card-header {
    font-size: 32px;
  }

  .member-card-mockup {
    display: none;
  }

  /* HOW IT WORKS */
  .hiw__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hiw__card {
    min-height: auto;
    overflow: hidden;
  }

  .hiw__card-image {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 16px auto 0;
  }

  .hiw__card-gradient {
    position: relative;
    padding: 24px;
  }

  /* REQUEST / MARQUEE - Keep animation same as desktop */
  .marquee-1,
  .marquee-1-inner {
    width: 100%;
    overflow: visible;
  }

  .marquee-1-inner {
    /* animation enabled on mobile - same as desktop */
    animation: marqueeScroll 20s linear infinite;
  }

  .marquee-1-inner._6886 {
    animation-direction: reverse;
  }

  /* RECEIVE / STACK */
  .div-block-2 {
    position: relative;
    inset: auto;
    margin-top: 40px;
  }

  .stack {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .front-design,
  .middle-design,
  .bottom-design {
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
  }

  .bottom-design {
    top: 40px;
    transform: translateX(-50%) rotate(-12deg);
  }

  /* SCREENSHOTS - Keep rotation and animation same as desktop */
  .screenshots-marquee {
    transform: rotate(9deg);
    height: auto;
    min-height: 200px;
  }

  .screenshots-track {
    animation: scrollScreenshots 8s linear infinite;
  }

  /* BENEFITS */
  .benefit-card {
    flex: 0 0 240px;
    min-width: 240px;
  }

  .benefit-card-image {
    height: 160px;
  }

  /* TESTIMONIALS */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* FOOTER */
  .footer-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================
   FIX: HOW IT WORKS CARD IMAGE FLOW
   ===================================== */
@media (max-width: 768px) {

  /* Reset absolute layout ONLY for HIW cards */
  .hiw__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hiw__card-image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 24px auto 0;
    z-index: 1;
  }

  /* Ensure text always comes after image */
  .hiw__card-gradient {
    position: relative !important;
    bottom: auto;
    margin-top: 16px;
    padding: 24px;
    z-index: 2;
  }
}
/* =====================================
   FIX: REQUEST CARD ICON OVERLAP (MOBILE)
   ===================================== */
@media (max-width: 768px) {

  /* Release absolute centering */
  .request__block {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    margin: 0 auto 16px;
    width: 72px;
    height: 72px;
    z-index: 2;
  }

  /* Ensure marquee pills stay behind */
  .receive__image-wrapper,
  .marquees {
    z-index: 1;
  }

  /* Text must always be above background */
  .hiw__card-gradient {
    z-index: 3;
  }
}
/* =================================================
   MOBILE = DESKTOP UI (HOW IT WORKS CARDS)
   ================================================= */
@media (max-width: 768px) {

  /* Lock card shape */
  .hiw__card {
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
  }

  /* KEEP image absolute (desktop behavior) */
  .hiw__card-image {
    position: absolute !important;
    top: 18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100%;
    max-width: 320px;
    height: calc(100% - 140px);
    object-fit: contain;
    z-index: 2;
  }

  /* KEEP bottom text overlay */
  .hiw__card-gradient {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
  }

  /* REQUEST CARD — keep centered icon */
  .request__block {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 72px;
    height: 72px;
    z-index: 4;
  }

  /* Pills stay behind icon */
  .receive__image-wrapper,
  .marquees {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  /* Typography scale only */
  .hiw__card-header {
    font-size: 22px;
    line-height: 1.2;
  }

  .hiw__card-p {
    font-size: 15px;
    line-height: 1.6;
  }
}