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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(240 15% 20%);
    background-color: #ffffff;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Inputs & Forms */
.input {
    width: 320px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid hsl(240 6% 88%);
    border-radius: 12px;
    background: #fff;
    color: hsl(240 15% 20%);
    font-size: 16px;
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.input:focus {
    border-color: #F26B38;
    box-shadow: 0 0 0 6px rgba(242, 107, 56, 0.2);
}

.waitlist-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.text-small { font-size: 14px; }

/* Sub page hero */
.sub-hero {
    padding: 160px 0 60px;
    background: radial-gradient(1200px 600px at 50% -100px, hsl(271 100% 97%), transparent), #fff;
}
.sub-hero .sub-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: .25rem;
    text-align: center;
}
.sub-hero .sub-desc {
    color: hsl(240 6% 40%);
}

/* Typography - Webflow Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: hsl(240 15% 20%);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    color: hsl(240 5% 45%);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Buttons - Webflow Style */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    color: white;
    box-shadow: 0 8px 32px hsla(271, 85%, 60%, 0.3);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px hsla(271, 85%, 60%, 0.4);
    background: linear-gradient(135deg, #FF7043, #FFAB91);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: hsl(240 5% 96%);
    color: hsl(240 15% 20%);
    border: 1px solid hsl(240 5% 90%);
    box-shadow: 0 2px 8px hsla(240, 5%, 20%, 0.1);
}

.btn-secondary:hover {
    background: hsl(240 5% 92%);
    border-color: hsl(240 5% 85%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px hsla(240, 5%, 20%, 0.15);
}

.btn-outline {
    background: transparent;
    color: #F26B38;
    border: 2px solid #F26B38;
    box-shadow: 0 2px 8px hsla(271, 85%, 60%, 0.1);
}

.btn-outline:hover {
    background: #F26B38;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px hsla(271, 85%, 60%, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* Navigation - Webflow Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(240, 5%, 90%, 0.5);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-self: center;
}

.nav-link {
    color: hsl(240 5% 45%);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-self: end;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: none;
    border: none;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(240 5% 60%);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.language-toggle:hover {
    color: hsl(240 5% 30%);
}

.language-toggle.active {
    color: hsl(240 5% 20%);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid hsl(240 5% 85%);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
    min-width: 100px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    padding: 6px 12px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.75rem;
    color: hsl(240 5% 45%);
    cursor: pointer;
    transition: all 0.15s ease;
}

.language-option:hover {
    color: hsl(240 5% 30%);
}

.language-option.active {
    color: hsl(240 5% 20%);
    font-weight: 600;
}

/* Hero Section - Webflow Style */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, hsl(240 5% 98%) 0%, hsl(240 5% 95%) 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(271, 85%, 60%, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(271, 100%, 75%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 2rem;
    color: hsl(240 15% 20%);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(240 5% 45%);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-form {
    margin-bottom: 3rem;
}

.hero-form .waitlist-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin-bottom: 0;
}

.hero-form .input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    height: 56px;
    box-sizing: border-box;
}

.hero-form .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
    white-space: nowrap;
    height: 56px;
    box-sizing: border-box;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F26B38;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: hsl(240 5% 45%);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* Modern mockup wrapper */
.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.mockup-phone {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.instagram-mockup {
    padding: 20px;
    height: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 50%;
}

.profile-info .username {
    font-weight: 600;
    color: #1a1a1a;
}

.profile-info .followers {
    font-size: 0.9rem;
    color: #666;
}

.mockup-posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.post {
    aspect-ratio: 1;
    border-radius: 8px;
}

.post-1 {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.post-2 {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.post-3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

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

/* Mobile Responsive - Hero Mockup */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-mockup {
        max-width: 320px;
        padding: 0 15px;
    }
    
    /* Mockup içindeki kartların mobile uyumu */
    .hero-mockup > div {
        padding: 20px !important;
        max-width: 100% !important;
    }
    
    /* Mockup içindeki iki sütunlu kartları tek sütun yap */
    .hero-mockup .grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    /* Mockup içindeki metinleri küçült */
    .hero-mockup h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .hero-mockup p {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    
    .hero-mockup .text-2xl {
        font-size: 1.5rem !important;
    }
    
    .hero-mockup .text-lg {
        font-size: 1rem !important;
    }
    
    .hero-mockup .text-sm {
        font-size: 0.75rem !important;
    }
    
    /* Butonları küçült */
    .hero-mockup button {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* iPhone Specific */
@media (max-width: 414px) {
    .hero-mockup {
        max-width: 280px;
        padding: 0 10px;
    }
    
    .hero-mockup > div {
        padding: 16px !important;
    }
    
    .hero-mockup h3 {
        font-size: 1rem !important;
    }
    
    .hero-mockup p {
        font-size: 0.8rem !important;
    }
    
    .hero-mockup .text-2xl {
        font-size: 1.3rem !important;
    }
    
    .hero-mockup .text-lg {
        font-size: 0.9rem !important;
    }
    
    .hero-mockup .text-sm {
        font-size: 0.7rem !important;
    }
}

/* Android Specific */
@media (max-width: 360px) {
    .hero-mockup {
        max-width: 260px;
        padding: 0 8px;
    }
    
    .hero-mockup > div {
        padding: 12px !important;
    }
    
    .hero-mockup h3 {
        font-size: 0.95rem !important;
    }
    
    .hero-mockup p {
        font-size: 0.75rem !important;
    }
    
    .hero-mockup .text-2xl {
        font-size: 1.2rem !important;
    }
    
    .hero-mockup .text-lg {
        font-size: 0.85rem !important;
    }
    
    .hero-mockup .text-sm {
        font-size: 0.65rem !important;
    }
}

/* Section Styles - Webflow Style */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: hsl(240 15% 20%);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(240 5% 45%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Value Propositions - Webflow Style */
.value-props {
    padding: 100px 0;
    background: hsl(240 5% 98%);
    position: relative;
}

.value-props::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, hsla(271, 85%, 60%, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Ensure all cards stretch to the same height inside the grid so
   bottom-aligned elements (like the check list) line up horizontally */
.value-grid {
    align-items: stretch;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid hsl(240 5% 92%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Let cards grow naturally but ensure equal heights in grid */
    height: 100%;
    min-height: auto;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px hsla(240, 5%, 20%, 0.12);
    border-color: #F26B38;
}

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

.value-card.featured {
    border: 2px solid #F26B38;
    background: linear-gradient(135deg, hsl(240 5% 98%), hsl(240 5% 95%));
    transform: scale(1.02);
}

.value-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

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

.value-title {
    color: hsl(240 15% 20%);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.value-description {
    color: hsl(240 5% 45%);
    margin-bottom: auto;
    line-height: 1.7;
    font-size: 1.125rem;
    flex-grow: 1;
    padding-bottom: 2rem;
}

.value-features {
    list-style: none;
    margin-top: auto;
    flex-shrink: 0;
    /* Remove fixed height, let content flow naturally */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-features li {
    padding: 0.75rem 0;
    color: hsl(240 5% 40%);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.value-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F26B38;
    font-weight: 700;
    font-size: 1.125rem;
    /* Align check mark to top of the text line */
    top: 0.75rem;
}

/* How It Works - Webflow Style */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(271, 85%, 60%, 0.02) 0%, hsla(271, 100%, 75%, 0.02) 100%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 32px hsla(271, 85%, 60%, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.step-title {
    color: hsl(240 15% 20%);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
}

.step-description {
    color: hsl(240 5% 45%);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.125rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.step-image {
    margin-top: 2rem;
}

.upload-mockup, .analysis-mockup, .results-mockup {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 16px 40px hsla(240, 5%, 20%, 0.1);
    border: 1px solid hsl(240 5% 92%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-mockup:hover, .analysis-mockup:hover, .results-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px hsla(240, 5%, 20%, 0.15);
}

.upload-icon, .analysis-icon, .results-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.upload-text, .analysis-text, .results-text {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(240 5% 40%);
    letter-spacing: -0.01em;
}

/* Testimonials - Webflow Style */
.testimonials {
    padding: 100px 0;
    background: hsl(240 5% 98%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, hsla(271, 85%, 60%, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid hsl(240 5% 92%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px hsla(240, 5%, 20%, 0.12);
    border-color: #F26B38;
}

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

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: #F26B38;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.125rem;
    color: hsl(240 5% 40%);
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    border-radius: 50%;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: hsl(240 15% 20%);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.95rem;
    color: hsl(240 5% 45%);
    margin-bottom: 0.25rem;
}

.author-business {
    font-size: 0.95rem;
    color: #F26B38;
    font-weight: 500;
}

/* Pricing - Webflow Style */
.pricing {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(271, 85%, 60%, 0.02) 0%, hsla(271, 100%, 75%, 0.02) 100%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    border: 1px solid hsl(240 5% 92%);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px hsla(240, 5%, 20%, 0.12);
    border-color: #F26B38;
}

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

.pricing-card.featured {
    border: 2px solid #F26B38;
    background: linear-gradient(135deg, hsl(240 5% 98%), hsl(240 5% 95%));
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px hsla(271, 85%, 60%, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.plan-name {
    font-size: 1.75rem;
    color: hsl(240 15% 20%);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.currency {
    font-size: 1.5rem;
    color: hsl(240 5% 45%);
    font-weight: 500;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: hsl(240 15% 20%);
    line-height: 1;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1.125rem;
    color: hsl(240 5% 45%);
    font-weight: 500;
}

.plan-description {
    color: hsl(240 5% 45%);
    font-size: 1.125rem;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

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

.feature-list li {
    padding: 1rem 0;
    color: hsl(240 5% 40%);
    border-bottom: 1px solid hsl(240 5% 95%);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F26B38;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Trust Elements - Webflow Style */
.trust-elements {
    padding: 80px 0;
    background: hsl(240 5% 98%);
    position: relative;
}

.trust-elements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, hsla(271, 85%, 60%, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid hsl(240 5% 92%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px hsla(240, 5%, 20%, 0.1);
    border-color: #F26B38;
}

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

.trust-title {
    color: hsl(240 15% 20%);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.trust-description {
    color: hsl(240 5% 45%);
    font-size: 1rem;
    line-height: 1.5;
}

/* Final CTA - Webflow Style */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #F26B38, #FF8A65);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(0, 0%, 100%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(0, 0%, 100%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 1.375rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: white;
    color: #F26B38;
    box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.2);
}

.final-cta .btn-primary:hover {
    background: hsl(240 5% 98%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px hsla(0, 0%, 0%, 0.25);
}

.final-cta .btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

.final-cta .btn-outline:hover {
    background: white;
    color: #F26B38;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.guarantee-icon {
    color: hsl(142 80% 45%);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Footer - Webflow Style */
.footer {
    background: hsl(240 15% 20%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, hsla(271, 85%, 60%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-subtitle {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-description {
    color: hsl(240 5% 70%);
    line-height: 1.7;
    font-size: 1.125rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsl(240 5% 70%);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid hsl(240 5% 30%);
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: hsl(240 5% 60%);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design - Webflow Style */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid, .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-form .waitlist-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .hero-form .input {
        width: 100%;
    }
    
    .hero-form .btn-primary {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .value-props, .how-it-works, .testimonials, .pricing, .trust-elements, .final-cta {
        padding: 80px 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-cta .btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .value-props, .how-it-works, .testimonials, .pricing, .trust-elements, .final-cta {
        padding: 60px 0;
    }
    
    .value-card, .testimonial-card, .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* Animations - Webflow Style */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: 2px solid #F26B38;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid #F26B38;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }
.p-6 { padding: 3rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(240 5% 95%);
}

::-webkit-scrollbar-thumb {
    background: #F26B38;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF7043;
}

/* Selection styles */
::selection {
    background: hsla(271, 85%, 60%, 0.2);
    color: hsl(240 15% 20%);
}

::-moz-selection {
    background: hsla(271, 85%, 60%, 0.2);
    color: hsl(240 15% 20%);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.show .popup {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.popup-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.popup-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.popup-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(240 15% 15%);
}

.popup-message {
    font-size: 16px;
    color: hsl(240 5% 40%);
    line-height: 1.5;
    margin-bottom: 24px;
}

.popup-button {
    background: #F26B38;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.popup-button:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

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

/* Mobile responsive */
@media (max-width: 480px) {
    .popup {
        padding: 24px;
        margin: 20px;
    }
    
    .popup-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .popup-message {
        font-size: 14px;
    }
}
