/* CSS Reset & Variables - Exact Figma Specs */
:root {
    /* Primary Colors from Figma */
    --primary-blue: #3ABAFF;
    --primary-blue-light: rgba(58, 186, 255, 0.1);
    --dark-blue: #1A1A2E;
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --background: #FFFFFF;
    --background-light: #F8FAFC;
    --card-background: #FFFFFF;
    --border-color: #E5E7EB;
    --success-green: #34C759;
    --error-red: #FF3B30;
    --accent-pink: #FF2D55;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-50: rgba(255, 255, 255, 0.5);

    /* Shadows from Figma */
    --shadow-button: 0px 0px 0px 7.5px rgba(255, 255, 255, 0.25);
    --shadow-button-sm: 0px 0px 0px 5px rgba(255, 255, 255, 0.25);
    --shadow-nav: inset 0px 0px 100px 0px rgba(255, 255, 255, 0.25);

    /* Border Radius from Figma */
    --radius-full: 99px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* Font Face for SF Pro Rounded */
@font-face {
    font-family: 'SF Pro Rounded';
    src: local('SF Pro Rounded Bold'), local('SFProRounded-Bold');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: local('SF Pro Rounded Semibold'), local('SFProRounded-Semibold');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Rounded';
    src: local('SF Pro Rounded Medium'), local('SFProRounded-Medium');
    font-weight: 500;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Rounded', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION - Exact Figma Specs
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 1038px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #3ABAFF 56%);
    overflow: hidden;
}

/* Floating Bubble Chat Icons */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-bubbles .bubble {
    position: absolute;
    opacity: 0.15;
}

.floating-bubbles-left {
    /* Positioned on left side */
}

.floating-bubbles-right {
    /* Positioned on right side */
}

/* ============================================
   HEADER / NAVIGATION - Exact Figma Specs
   ============================================ */

.header {
    position: relative;
    z-index: 100;
    padding-top: 41px;
    display: flex;
    justify-content: center;
}

.nav {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 876px;
    height: 60px;
    padding: 0 26px;
    /* Glass effect from Figma */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16.658px);
    -webkit-backdrop-filter: blur(16.658px);
    border: 1px solid var(--white-50);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-nav);
}

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

.nav-links a {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.15px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Logo - Exact Figma Specs */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-icon {
    width: 28.682px;
    height: 28.682px;
}

.logo-text {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.56px;
    color: white;
}

.logo-text sup {
    font-size: 18.06px;
    vertical-align: super;
}

/* Header Download Button - Exact Figma Specs */
.btn-download-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-button-sm);
    text-decoration: none;
    overflow: hidden;
}

.btn-download-header .btn-icon {
    width: 18px;
    height: 18px;
}

.btn-download-header span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.15px;
    color: var(--primary-blue);
}

/* ============================================
   HERO CONTENT - Exact Figma Specs
   ============================================ */

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 53px;
    text-align: center;
}

/* Badges - Exact Figma Specs */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 11px;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 8px;
    background: var(--white-10);
    border: 1px solid var(--white-25);
    border-radius: var(--radius-full);
}

.badge-icon {
    width: 24px;
    height: 24px;
}

.badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.09px;
    color: white;
    text-align: center;
}

/* Hero Title - Exact Figma Specs */
.hero-title {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -1.44px;
    color: white;
    text-align: center;
    white-space: pre-wrap;
    margin-bottom: 0;
}

.hero-title-highlight {
    color: white;
}

/* Title Underline */
.title-underline {
    margin-top: -5px;
    margin-bottom: 20px;
}

/* Hero Subtitle - Exact Figma Specs */
.hero-subtitle {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: white;
    text-align: center;
    width: 482px;
    max-width: 90%;
    margin-bottom: 15px;
}

/* Main Download Button - Exact Figma Specs */
.btn-download-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    width: 300px;
    height: 43px;
    padding: 14px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 148.5px;
    box-shadow: var(--shadow-button);
    text-decoration: none;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn-download-main .btn-icon {
    width: 27px;
    height: 27px;
}

.btn-download-main span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 22.5px;
    line-height: 36px;
    letter-spacing: -0.225px;
    color: var(--primary-blue);
}

/* No Credit Card - Exact Figma Specs */
.no-credit-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-card-icon {
    width: 18px;
    height: 18px;
}

.no-credit-card span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: white;
    text-align: center;
}

/* Phone Mockups */
.phone-mockups {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.phone-mockups::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.phone-image {
    max-width: 706px;
    width: 100%;
    height: auto;
}

/* ============================================
   SMALL DOWNLOAD BUTTON
   ============================================ */

.btn-download-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-button-sm);
    text-decoration: none;
    overflow: hidden;
}

.btn-download-small .btn-icon {
    width: 20px;
    height: 20px;
}

.btn-download-small span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-blue);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.highlight {
    color: var(--primary-blue);
}

/* ============================================
   MONETIZE SECTION - Exact Figma Specs
   ============================================ */

.monetize {
    position: relative;
    padding: 58px 0 80px;
    text-align: center;
    background: white;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Memoji Containers */
.memojis-left,
.memojis-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.memojis-left {
    /* Slides off left edge as viewport shrinks */
    left: calc(50vw - 950px);
}

.memojis-right {
    /* Slides off right edge as viewport shrinks */
    right: calc(50vw - 950px);
}

/* Memoji Row with Line */
.memoji-row-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 151px;
}

.memoji-row {
    display: flex;
    gap: 35px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.memoji {
    width: 151px;
    height: 151px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Lines extending from memojis */
.memoji-line {
    position: absolute;
    z-index: 1;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.memojis-left .memoji-line {
    left: 0;
}

.memojis-right .memoji-line {
    right: 0;
}

.memojis-left .line-1 {
    width: 738px;
}

.memojis-left .line-2 {
    width: 616px;
}

.memojis-left .line-3 {
    width: 704px;
}

.memojis-right .line-1 {
    width: 738px;
}

.memojis-right .line-2 {
    width: 616px;
}

.memojis-right .line-3 {
    width: 704px;
}

/* Offset rows */
.memojis-left .row-2 {
    margin-left: -93px;
}

.memojis-right .row-2 {
    margin-right: -93px;
}

/* Center Content */
.monetize-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 512px;
    padding: 0 40px;
}

.section-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monetize-title {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
    text-align: center;
    color: black;
    margin: 0;
}

.monetize-title .highlight {
    color: var(--primary-blue);
}

.monetize-subtitle {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: black;
    opacity: 0.65;
    width: 482px;
    max-width: 100%;
    margin: 0;
}

.monetize-box {
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-radius: 15px;
    padding: 15px;
    width: 100%;
}

.monetize-box p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: black;
    opacity: 0.65;
    margin: 0;
}

/* Mobile Memojis - Hidden on desktop */
.memojis-mobile-container {
    display: none;
}

/* Hide desktop memojis and show mobile memojis on smaller screens */
@media (max-width: 1200px) {
    .memojis-left,
    .memojis-right {
        display: none;
    }

    .monetize {
        padding: 60px 20px 40px;
        flex-direction: column;
        overflow: visible;
    }

    .memojis-mobile-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 40px;
    }

    .memojis-mobile-row {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
    }

    .mobile-line {
        position: absolute;
        height: 5px;
        border-radius: 0 3px 3px 0;
        z-index: 1;
        width: 75%;
    }

    .mobile-line-blue {
        background: #3ABAFF;
        left: -20px;
        right: auto;
        border-radius: 0 3px 3px 0;
    }

    .mobile-line-red {
        background: #FF6B6B;
        right: -20px;
        left: auto;
        border-radius: 3px 0 0 3px;
    }

    .memojis-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        position: relative;
        z-index: 2;
    }

    .memoji-mobile {
        width: 80px;
        height: 80px;
        object-fit: cover;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .memoji-mobile {
        width: 64px;
        height: 64px;
    }

    .memojis-mobile-row {
        height: 64px;
    }

    .memojis-mobile {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .memoji-mobile {
        width: 56px;
        height: 56px;
    }

    .memojis-mobile-row {
        height: 56px;
    }

    .memojis-mobile {
        gap: 8px;
    }

    .mobile-line {
        height: 4px;
    }
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps {
    padding: 100px 40px;
    background: var(--background-light);
    text-align: center;
}

.steps h2 {
    margin-bottom: 16px;
}

.steps-subtitle {
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-icon {
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 16px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
}

.steps-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.steps-cta > span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   TESTIMONIALS SECTION - New Figma Design
   ============================================ */

.testimonials {
    padding: 100px 40px 80px;
    background: white;
    overflow: visible;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: 311px 1fr 311px;
    grid-template-rows: 200px 180px auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

/* Card Label Script Font (Caveat) */
.card-label-script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    display: block;
    margin-bottom: 5px;
}

/* Native Messaging Card (Green) */
.card-native-messaging {
    grid-column: 1;
    grid-row: 1 / 3;
    background: linear-gradient(180deg, #02E346 0%, #00BD39 100%);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-native-messaging .card-content {
    position: relative;
    z-index: 2;
}

.card-native-messaging .card-label-script {
    opacity: 1;
}

.card-native-messaging h3 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.card-native-messaging p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    opacity: 0.75;
    color: white;
}

.chat-bubble-decoration {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    z-index: 1;
}

.chat-bubble-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
}

/* Rich Media Sharing Card */
.card-rich-media {
    grid-column: 2 / 4;
    grid-row: 1;
    background: #FAFAFA;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    overflow: visible;
    position: relative;
}

.card-rich-media .card-content {
    flex: 1;
    min-width: 200px;
}

.card-rich-media .card-label-script {
    opacity: 0.75;
    color: black;
}

.card-rich-media h3 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
    color: black;
}

.card-rich-media p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    opacity: 0.75;
    color: black;
}

.media-photos {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.media-photo {
    width: 110px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Center Header Card */
.card-center-header {
    grid-column: 2;
    grid-row: 2;
    background: #FAFAFA;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-title > span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    letter-spacing: -0.64px;
    color: black;
}

.love-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.love-line > span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    letter-spacing: -0.64px;
    color: black;
}

.heart-icon {
    width: 32px;
    height: 32px;
}

.ibubble-pink {
    color: #FE6678;
}

.header-subtitle {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: black;
    opacity: 0.65;
    margin: 0;
}

/* Profile Customization Card (Blue) */
.card-profile-customization {
    grid-column: 3;
    grid-row: 2 / 4;
    background: linear-gradient(180deg, #3ABAFF 0%, #016FD0 100%);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
}

.card-profile-customization .card-label-script {
    opacity: 0.75;
}

.card-profile-customization h3 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
}

.card-profile-customization p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    opacity: 0.75;
    color: white;
}

.profile-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 -10px -20px -10px;
    margin-top: auto;
    padding-top: 70px;
    padding-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.25);
    position: relative;
}

.profile-image-wrapper {
    position: absolute;
    top: -56px;
}

.profile-image {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-showcase .profile-name {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 49px;
    letter-spacing: -0.32px;
    color: white;
    margin-top: 10px;
}

.profile-showcase .profile-since {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    color: white;
    opacity: 0.75;
}

/* Easy Payments Card */
.card-easy-payments {
    grid-column: 1 / 3;
    grid-row: 3;
    background: #FAFAFA;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.card-easy-payments .card-content {
    flex: 1;
}

.card-easy-payments .card-label-script {
    opacity: 0.75;
    color: black;
}

.card-easy-payments h3 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
    color: black;
}

.card-easy-payments p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.15px;
    opacity: 0.75;
    color: black;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-row {
    display: flex;
    gap: 12px;
}

.payment-icon {
    width: 70px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon img {
    max-width: 60%;
    max-height: 70%;
    object-fit: contain;
}

.payment-icon.visa {
    background-color: #00579F;
}

.payment-icon.diners {
    background-color: #0079BE;
}

.payment-icon.amex {
    background-color: #016FD0;
}

.payment-icon.discover {
    background-color: #232342;
}

.payment-icon.discover img {
    max-width: 90%;
    max-height: 90%;
}

.payment-icon.gpay {
    background-color: black;
    gap: 4px;
}

.payment-icon.gpay .gpay-g {
    max-width: 20%;
}

.payment-icon.gpay .gpay-pay {
    max-width: 35%;
}

.payment-icon.mastercard {
    background-color: black;
}

.payment-icon.stripe {
    background-color: #6461FC;
}

.payment-icon.stripe img {
    max-width: 70%;
}

.payment-icon.paypal-blue {
    background: linear-gradient(124deg, #0096D8 0%, #003087 100%);
}

.payment-icon.paypal-blue img {
    max-width: 30%;
}

.payment-icon.paypal-dark {
    background-color: #253B80;
}

.payment-icon.applepay {
    background-color: black;
}

.payment-icon.applepay img {
    max-width: 70%;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid-new {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .card-native-messaging {
        grid-column: 1;
        grid-row: auto;
        min-height: 300px;
    }

    .card-rich-media {
        grid-column: span 2;
        grid-row: auto;
        flex-direction: column;
    }

    .media-photos {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }

    .card-profile-customization {
        grid-column: 2;
        grid-row: auto;
    }

    .card-center-header {
        grid-column: 1;
        padding: 30px;
    }

    .card-easy-payments {
        grid-column: span 2;
        grid-row: auto;
        flex-direction: column;
        text-align: center;
    }

    .card-easy-payments .card-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

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

    .card-native-messaging,
    .card-profile-customization {
        min-height: auto;
    }

    .card-rich-media {
        grid-column: 1;
    }

    .card-center-header {
        grid-column: 1;
        padding: 20px;
    }

    .header-title > span,
    .love-line > span {
        font-size: 28px;
        line-height: 32px;
    }

    .card-easy-payments {
        grid-column: 1;
    }

    .card-profile-customization {
        grid-column: 1;
    }

    .media-photo {
        width: 100px;
        height: 140px;
    }

    .payment-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icon {
        width: 60px;
        height: 42px;
    }
}

/* ============================================
   SECURITY SECTION
   ============================================ */

.security {
    padding: 80px 40px;
    background: white;
    display: flex;
    justify-content: center;
}

.security-card {
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #010101 100%);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 80px 40px;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
}

.binary-pattern {
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px;
    overflow: hidden;
    pointer-events: none;
}

.binary-line {
    font-family: 'SF Pro Rounded', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(58, 186, 255, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    letter-spacing: 3px;
    font-style: italic;
}

.binary-top {
    top: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.binary-bottom {
    bottom: 0;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.security-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.security-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.security-header span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
    color: white;
}

.security-header .lock-icon {
    width: 32px;
    height: 32px;
}

.security-header .protected {
    color: var(--primary-blue);
}

.security h2 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
    margin-bottom: 20px;
    color: white;
}

.security p {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: white;
    opacity: 0.65;
}

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

.faq {
    padding: 100px 40px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 39px 60px;
    max-width: 708px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 588px;
    position: relative;
}

.faq-header-text {
    text-align: left;
    flex: 1;
}

.faq-memoji {
    width: 200px;
    height: auto;
    position: absolute;
    right: -80px;
    top: -40px;
    z-index: 10;
}

.faq h2 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.72px;
}

.faq h2 .highlight {
    color: var(--primary-blue);
}

.faq-subtitle {
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    line-height: 26px;
}

.faq-chat-container {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    max-width: 588px;
    min-height: 498px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 15px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 7px 14px;
    font-family: 'SF Pro', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 22px;
    border-radius: 18px;
    max-width: 80%;
}

.chat-bubble-question {
    background: var(--primary-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chat-bubble-question:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(58, 186, 255, 0.3);
}

.chat-bubble-question:active {
    transform: scale(0.98);
}

.chat-bubble-answer {
    background: #e9e9eb;
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    max-width: 70%;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-bubble-answer.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta > span {
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    line-height: 26px;
}

.btn-write-to-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5.625px;
    padding: 11px 30px;
    background: #101010;
    color: white;
    border-radius: 111px;
    text-decoration: none;
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 16.875px;
    font-weight: 600;
    letter-spacing: -0.17px;
    line-height: 27px;
    box-shadow: 0 0 0 5.625px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-write-to-us:hover {
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.15);
}

.btn-write-to-us .btn-icon {
    width: 20.25px;
    height: 20.25px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .faq-header {
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
    }

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

    .faq-memoji {
        width: 100px;
        position: relative;
        right: auto;
        top: auto;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-chat-container {
        min-height: auto;
    }

    .chat-bubble {
        font-size: 15px;
        max-width: 85%;
    }

    .chat-bubble-answer {
        max-width: 85%;
    }

    .faq-cta {
        flex-direction: column;
        gap: 15px;
    }

    .faq-cta > span {
        font-size: 16px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: 120px 40px 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 5%, #3ABAFF 55%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bubbles {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    pointer-events: none;
    z-index: 1;
}

.cta-bubbles-left {
    left: 0;
}

.cta-bubbles-right {
    right: 0;
}

.cta-bubble {
    position: absolute;
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 708px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.final-cta h2 {
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -1.44px;
    color: white;
    margin: 0;
    position: relative;
    z-index: 20;
}

.cta-content > p {
    max-width: 482px;
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: white;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-divider {
    width: 384px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.cta-feature-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.09px;
    color: white;
}

.cta-feature-pill .feature-icon {
    width: 24px;
    height: 24px;
}

.cta-feature-pill svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

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

.footer {
    padding: 20px 40px 24px;
    background: #3ABAFF;
}

.footer-divider {
    max-width: 1284px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 auto 20px;
}

.footer-content {
    max-width: 1284px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: white;
}

.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

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

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        grid-row: span 1;
    }

    .payment-card {
        grid-column: span 1;
    }

    .floating-bubbles {
        display: none;
    }

    .nav-container {
        width: 90%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 20px;
    }

    .nav-container {
        width: calc(100% - 40px);
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, #3ABAFF 70%);
    }

    .phone-mockups::after {
        height: 70%;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge span {
        font-size: 14px;
    }

    .hero-subtitle {
        width: 100%;
        padding: 0 20px;
    }

    .btn-download-main {
        width: 260px;
        height: 38px;
    }

    .btn-download-main span {
        font-size: 18px;
    }

    .phone-image {
        max-width: 100%;
        padding: 0 20px;
    }

    .monetize,
    .steps,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 20px;
    }

    /* Monetize Section Mobile */
    .monetize {
        min-height: auto;
    }

    .monetize-content {
        padding: 0 20px;
        gap: 20px;
    }

    .monetize-title {
        font-size: 28px;
        line-height: 32px;
    }

    .monetize-subtitle {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }

    .monetize-box {
        padding: 12px;
    }

    .monetize-box p {
        font-size: 16px;
        line-height: 24px;
    }

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

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

    .security {
        padding: 60px 20px;
    }

    .security-header {
        flex-wrap: wrap;
        font-size: 18px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        font-size: 14px;
    }

    .avatar-row.offset {
        margin-left: 0;
    }

    .final-cta h2 {
        font-size: 48px;
        line-height: 52px;
    }

    .cta-content > p {
        font-size: 16px;
    }

    .cta-divider {
        width: 280px;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta-feature-pill {
        font-size: 14px;
    }

    .cta-bubbles {
        width: 30%;
    }

    .cta-bubble {
        opacity: 0.5;
    }

    .title-underline {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-text sup {
        font-size: 12px;
    }

    .btn-download-header span {
        display: none;
    }

    .btn-download-main {
        width: 220px;
    }

    .love-title {
        font-size: 1.5rem;
    }

    .faq h2 {
        font-size: 24px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    /* Monetize Section Small Mobile */
    .monetize-title {
        font-size: 24px;
        line-height: 28px;
    }

    .monetize-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .monetize-box p {
        font-size: 14px;
        line-height: 22px;
    }

    .section-icon {
        width: 24px;
        height: 24px;
    }

    .section-icon img {
        width: 24px;
        height: 24px;
    }
}
