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

:root {
    --primary-color: #ff7d5c;
    --primary-dark: #e66a4a;
    --secondary-color: #ff7d5c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

body {
    font-family: 'Capriola', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: auto;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

/* Ensure all sections have no gaps or borders */
section {
    margin: 0;
    border: none;
    outline: none;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    pointer-events: auto;
    touch-action: pan-y;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 1;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7d5c;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #ff7d5c;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 200px;
    background: linear-gradient(135deg, #fff5f3 0%, #e8f4f8 100%);
    overflow: visible;
    margin: 0;
    border: none;
    outline: none;
    touch-action: pan-y pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
    scroll-snap-type: none;
    -webkit-tap-highlight-color: transparent;
}

/* Phone mockup - allow scroll through completely */
.phone-mockup {
    pointer-events: none !important;
    touch-action: none !important;
}

/* Phone mockup children also disabled */
.phone-mockup * {
    pointer-events: none !important;
    touch-action: none !important;
}

/* Re-enable pointer events for download buttons inside phone */
.phone-download-buttons,
.phone-download-buttons * {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    position: relative;
    z-index: 9999;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: pan-y;
}

.hero-text {
    pointer-events: auto;
    touch-action: pan-y;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    color: #ff7d5c;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff7d5c;
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: #ff7d5c;
    border: 2px solid #ff7d5c;
}

.btn-secondary:hover {
    background: #ff7d5c;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7d5c;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 50px 20px;
    position: relative;
    z-index: 1;
    pointer-events: none !important;
    touch-action: none !important;
    will-change: contents;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.phone-mockup {
    position: relative;
    width: 350px;
    height: 700px;
    background: #1a1a1a;
    border-radius: 56px;
    padding: 11px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 0, 0) perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid #2a2a2a;
    margin-top: -30px;
    pointer-events: none;
    touch-action: none;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 0 0 21px 21px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: url('../images/bg_white.svg') center/cover no-repeat;
    border-radius: 45px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    pointer-events: none;
    touch-action: none;
}

.phone-logo {
    width: 168px;
    height: 168px;
    object-fit: contain;
    margin-top: 0px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.3s;
}

.phone-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    pointer-events: auto;
    touch-action: manipulation;
}

.phone-download-buttons .store-btn {
    width: 100%;
    max-width: 180px;
    height: 50px;
}

.phone-download-buttons .store-icon-wrapper svg {
    width: 24px;
    height: auto;
}

.phone-download-buttons .store-label {
    font-size: 0.7rem;
}

.phone-download-buttons .store-name {
    font-size: 1.1rem;
}

/* Store Button Base Styles */
.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    pointer-events: auto;
    touch-action: manipulation;
}

.store-btn {
    transform-origin: center;
}

.store-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.store-icon-wrapper {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon-wrapper svg {
    display: block;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 0.75rem;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.02em;
}

.store-name {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    margin-top: -4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.01em;
}

/* App Store Button - Official Design */
.app-store-btn {
    width: 192px;
    height: 56px;
    background: #000000;
    color: #ffffff;
    border-radius: 12px;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

/* Google Play Button - Official Design */
.google-play-btn {
    width: 192px;
    height: 56px;
    background: #000000;
    color: #ffffff;
    border-radius: 12px;
    padding: 0 16px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bg-white);
    z-index: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 0;
    vertical-align: bottom;
    border: none;
    outline: none;
    transform: translateY(1px);
}

/* Section Wave Transitions */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    line-height: 0;
    vertical-align: bottom;
    transform: translateY(1px);
}

.section-wave svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
    line-height: 0;
    position: relative;
    bottom: 0;
    border: none;
    outline: none;
}

.wave-white-to-light {
    color: var(--bg-light);
}

.wave-light-to-orange {
    color: #ff7d5c;
}

.wave-orange-to-dark {
    color: var(--text-dark);
}

.wave-orange-to-white {
    color: var(--bg-white);
}

/* Marketing Banner Section */
.marketing-banner {
    padding: 2rem 0 20rem;
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    margin-top: -2px;
    border: none;
    outline: none;
    border-top: none;
    border-bottom: none;
}

.marketing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 125, 92, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 125, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.marketing-content {
    position: relative;
    z-index: 2;
}

.marketing-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ff7d5c 0%, #ff9d7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 125, 92, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform-origin: center;
    transform: scale(1);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7d5c 0%, #ff9d7d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(255, 125, 92, 0.2) !important;
    border-color: rgba(255, 125, 92, 0.3) !important;
}

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

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 125, 92, 0.1) 0%, rgba(255, 157, 125, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7d5c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.audience-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7d5c, #ff9d7d);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 125, 92, 0.2) 0%, rgba(255, 157, 125, 0.2) 100%);
}

.audience-card:hover .audience-icon::after {
    opacity: 1;
}

.audience-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.audience-card:hover h3 {
    color: #ff7d5c;
}

.audience-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 2rem 0 18rem;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    margin: 0;
    margin-top: -3px;
    border: none;
    outline: none;
    border-top: none;
    border-bottom: none;
}

.features .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 125, 92, 0.1);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform-origin: center;
    transform: scale(1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7d5c 0%, #ff9d7d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(255, 125, 92, 0.2) !important;
    border-color: rgba(255, 125, 92, 0.3) !important;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 125, 92, 0.1) 0%, rgba(255, 157, 125, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7d5c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7d5c, #ff9d7d);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 125, 92, 0.2) 0%, rgba(255, 157, 125, 0.2) 100%);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: #ff7d5c;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 2rem 0 14rem;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
    margin: 0;
    border: none;
    outline: none;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 125, 92, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform-origin: center;
    transform: scale(1);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7d5c 0%, #ff9d7d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(255, 125, 92, 0.2) !important;
    border-color: rgba(255, 125, 92, 0.3) !important;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:last-child {
    margin-bottom: 3rem;
}

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

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Download Section */
.download {
    padding: 2rem 0 14rem;
    background: #ff7d5c;
    color: white;
    position: relative;
    z-index: 1;
    margin: 0;
    border: none;
    outline: none;
}

.download .container {
    position: relative;
    z-index: 2;
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.download-btn-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.download-btn-name {
    font-size: 1.2rem;
    font-weight: 600;
}


/* FAQ Section */
.faq-section {
    background: var(--text-dark);
    padding: 6rem 0 10rem;
    color: white;
    margin: 0;
    margin-top: -1px;
    border: none;
    outline: none;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-header .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Capriola', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0 8rem;
        margin-top: -1px;
    }

    .faq-header .section-title {
        font-size: 2rem;
    }

    .faq-header .section-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0 6rem;
    margin: 0;
    margin-top: -1px;
    border: none;
    outline: none;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #ff7d5c;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .phone-mockup {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .marketing-title {
        font-size: 2rem;
    }

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

    .step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

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

    .phone-mockup {
        width: 308px;
        height: 616px;
        border-radius: 49px;
        padding: 9px;
    }

    .phone-mockup::before {
        width: 147px;
        height: 31px;
    }

    .phone-screen {
        padding: 25px;
        border-radius: 40px;
    }

    .phone-logo {
        width: 147px;
        height: 147px;
    }

    .phone-download-buttons .store-btn {
        max-width: 160px;
        height: 45px;
        padding: 0 12px;
    }

    .phone-download-buttons .store-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .phone-download-buttons .store-label {
        font-size: 0.65rem;
    }

    .phone-download-buttons .store-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
        border-radius: 30px;
        padding: 5px;
    }

    .phone-mockup::before {
        width: 80px;
        height: 18px;
        border-radius: 0 0 12px 12px;
    }

    .phone-screen {
        padding: 12px;
        border-radius: 25px;
    }

    .phone-logo {
        width: 70px;
        height: 70px;
    }

    .phone-download-buttons {
        gap: 10px;
        padding: 15px 0;
    }

    .phone-download-buttons .store-btn {
        max-width: 140px;
        height: 40px;
        padding: 0 10px;
    }

    .phone-download-buttons .store-icon-wrapper {
        margin-right: 8px;
    }

    .phone-download-buttons .store-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .phone-download-buttons .store-label {
        font-size: 0.6rem;
    }

    .phone-download-buttons .store-name {
        font-size: 1rem;
    }

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

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

    .audience-icon {
        width: 70px;
        height: 70px;
    }

    .audience-icon svg {
        width: 35px;
        height: 35px;
    }

    .step {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

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

.feature-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 125, 92, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Capriola', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.cookie-btn-reject {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-reject:hover {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-customize {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.25rem;
}

.cookie-btn-customize:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.cookie-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-modal-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.our-story-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.our-story-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.our-story-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.our-story-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.our-story-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.our-story-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.our-story-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.our-story-content a:hover {
    opacity: 0.8;
}

.our-story-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-category-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cookie-modal-actions .cookie-btn {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 768px) {
    .cookie-modal-content {
        max-height: 95vh;
    }

    .cookie-modal-header {
        padding: 1.25rem;
    }

    .cookie-modal-body {
        padding: 1.25rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}

