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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0a0a0a;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #a1a1aa;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 1rem;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .floating-nav,
    .nav-link {
        transition: none !important;
    }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-nav.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.nav-container {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 42, 42, 0.8);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a1a1aa;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(42, 42, 42, 0.5);
}

.nav-link.active {
    color: #000000;
    background-color: #ff8c00;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.nav-link.active:hover {
    background-color: #ff7c00;
}

.nav-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Desktop Navigation - Hide on Mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    cursor: pointer;
}

.mobile-nav-toggle.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.hamburger-container {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 42, 42, 0.8);
    border-radius: 50px;
    padding: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.mobile-nav-toggle:hover .hamburger-container {
    background: rgba(42, 42, 42, 0.95);
    transform: scale(1.05);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #a1a1aa;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.mobile-nav-toggle:hover .hamburger-line {
    background-color: #ffffff;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #ff8c00;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #ff8c00;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(42, 42, 42, 0.8);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

.mobile-nav-panel.open {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.mobile-nav-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: #ffffff;
}

.mobile-nav-links {
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #a1a1aa;
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.mobile-nav-link.active {
    color: #ff8c00;
    position: relative;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #ff8c00;
    border-radius: 2px;
}

.mobile-nav-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Show Mobile Navigation on Small Screens */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
}

.btn-primary {
    background-color: #ff8c00;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #ff7c00;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: #ff8c00;
    color: #000000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    text-align: center;
    padding: 8rem 0;
}

.hero-icon {
    margin-bottom: 2rem;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 165, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-cta {
    margin-top: 2rem;
}

/* Value Proposition Section */
.value-prop {
    background-color: #111111;
}

.value-prop h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-item p {
    color: #a1a1aa;
    line-height: 1.6;
}

.privacy-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #ff7c00;
    text-decoration: underline;
}

/* Features Section */
.features {
    background-color: #0a0a0a;
}

.features h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
}

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

.feature-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    border-color: #ff8c00;
}

.feature-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #a1a1aa;
}

/* Screenshots Section */
.screenshots {
    background-color: #111111;
    text-align: center;
}

.screenshots h2 {
    color: #ffffff;
    margin-bottom: 4rem;
}

.screenshots-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 165, 0, 0.2);
    border-color: #ff8c00;
}

.framed-screenshot {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.screenshot-item h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.screenshot-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.view-more-section {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ff7c00 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ff7c00 0%, #ff6c00 100%);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 2% auto;
    padding: 0;
    border: 2px solid #ff8c00;
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #2a2a2a;
    background-color: #0f0f0f;
}

.modal-header h2 {
    color: #ff8c00;
    margin: 0;
    font-size: 1.75rem;
}

.modal-close {
    color: #a1a1aa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #ff8c00;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.modal-screenshot-item {
    background-color: #0f0f0f;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    transition: transform 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.modal-screenshot-item:hover {
    transform: translateY(-4px);
    border-color: #ff8c00;
}

.modal-screenshot {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.modal-screenshot-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-screenshot-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.mockups-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* iPhone Mockup Styles */
.iphone-mockup {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.15);
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background-color: #ff8c00;
    border-radius: 3px;
}

.iphone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background-color: #ff8c00;
    border-radius: 2.5px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.placeholder-content {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7c00 100%);
    height: 100%;
    padding: 2rem 1rem;
    color: #000000;
}

.app-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.placeholder-ui .ui-element {
    height: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    border-radius: 8px;
}

.placeholder-chat .chat-bubble {
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    border-radius: 15px;
    width: 70%;
}

.placeholder-chat .chat-bubble:nth-child(2) {
    width: 50%;
    margin-left: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.placeholder-dashboard .dashboard-card {
    height: 80px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    border-radius: 12px;
}

/* Risk Education Section */
.risk-education {
    background-color: #111111;
    text-align: center;
}

.risk-education h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.risk-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.risk-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    border-color: #ff3333;
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.risk-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.risk-item p {
    color: #a1a1aa;
    line-height: 1.6;
}

.privacy-education {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-education h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.privacy-education p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Reality Check Section */
.reality-check {
    background-color: #0a0a0a;
    text-align: center;
}

.reality-check h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.reality-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.reality-category {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reality-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    border-color: #ff3333;
}

.reality-category h3 {
    color: #ff3333;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.reality-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.reality-category li {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1rem;
}

.reality-category li:last-child {
    margin-bottom: 0;
}

.reality-footer {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reality-footer p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reality-footer p:last-child {
    margin-bottom: 0;
    color: #ff8c00;
    font-weight: 600;
}

.reality-footer strong {
    color: #ffffff;
}

/* Phone Security Section */
.phone-security {
    background-color: #111111;
    text-align: center;
}

.phone-security h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.phone-security-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.security-comparison {
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-item {
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-advantage {
    background-color: #1a1a1a;
    border: 2px solid #ff8c00;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
}

.local-advantage:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
}

.local-advantage h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cloud-risk {
    background-color: #1a1a1a;
    border: 2px solid #ff3333;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
}

.cloud-risk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.cloud-risk h3 {
    color: #ff3333;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.comparison-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.comparison-item li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.comparison-item strong {
    color: #ffffff;
}

.security-reality {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.security-reality h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.reality-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-size: 1rem;
    max-width: 150px;
}

.stat-vs {
    font-size: 2rem;
    font-weight: 700;
    color: #6b7280;
}

.iphone-advantages {
    margin-bottom: 4rem;
}

.iphone-advantages h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.advantage-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.1);
    border-color: #ff8c00;
}

.advantage-item h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.advantage-item p {
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
}

.phone-security-footer {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.phone-security-footer p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phone-security-footer p:last-child {
    margin-bottom: 0;
    color: #ff8c00;
    font-weight: 600;
}

.phone-security-footer strong {
    color: #ffffff;
}

/* Competitor Comparison Section */
.competitor-comparison {
    background-color: #0a0a0a;
    text-align: center;
}

.competitor-comparison h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.comparison-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.competitor-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.competitor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.1);
    border-color: #3a3a3a;
}

.competitor-item h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.competitor-item h3 a {
    color: #ff8c00;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.competitor-item h3 a:hover {
    text-decoration: underline;
}

.competitor-pros {
    margin-bottom: 2rem;
}

.competitor-pros h4 {
    color: #4ade80;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.competitor-considerations h4 {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.competitor-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.competitor-item li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.comparison-conclusion {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-conclusion h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.comparison-conclusion p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.comparison-conclusion p:last-child {
    margin-bottom: 0;
}

.comparison-conclusion strong {
    color: #ffffff;
}

/* Target Audience Section */
.target-audience {
    background-color: #0a0a0a;
    text-align: center;
}

.target-audience h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.audience-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    border-color: #ff8c00;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.audience-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.audience-item p {
    color: #a1a1aa;
}

.privacy-guarantee {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.privacy-guarantee h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.privacy-guarantee p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin: 0;
}

/* Download Section */
.download {
    background-color: #111111;
    text-align: center;
}

.download h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
    display: block;
}

.app-store-btn img,
.play-store-btn img {
    height: 60px;
    transition: transform 0.2s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: scale(1.05);
}

.requirements {
    font-style: italic;
    color: #6b7280;
}

/* TestFlight Button Styles */
.testflight-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.testflight-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testflight-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #007AFF;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.testflight-icon {
    font-size: 2.5rem;
}

.testflight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.testflight-available {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.testflight-name {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

/* Development Info Styles */
.development-info {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.development-info h3 {
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
}

.development-info p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.voice-matters h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.voice-matters ul {
    margin: 0;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.voice-matters li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.community-message {
    color: #ff8c00;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Terms Page Styles */
.terms-header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.header-nav {
    display: flex;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ff8c00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #ff7c00;
}

.back-arrow {
    font-size: 1.25rem;
}

.header-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.terms-main {
    background-color: #0a0a0a;
    padding: 4rem 0;
    min-height: 70vh;
}

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

.terms-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.terms-intro {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    margin-bottom: 3rem;
}

.terms-intro p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.terms-section {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.terms-section strong {
    color: #ffffff;
}

.terms-footer {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    text-align: center;
    margin-top: 3rem;
}

.terms-footer p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-footer p:last-child {
    margin-bottom: 0;
    color: #ff8c00;
    font-weight: 600;
}

/* Privacy Page Styles */
.privacy-header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.privacy-main {
    background-color: #0a0a0a;
    padding: 4rem 0;
    min-height: 70vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-intro {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    margin-bottom: 3rem;
    text-align: center;
}

.privacy-intro p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.collect-nothing {
    color: #ff8c00;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
}

.privacy-section {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-bottom: 2rem;
}

.privacy-section.highlight {
    border: 2px solid #ff8c00;
    background-color: #1f1f1f;
}

.privacy-section h2 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.privacy-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.privacy-section strong {
    color: #ffffff;
}

.data-category {
    margin-bottom: 2rem;
}

.data-category h3 {
    color: #ff8c00;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.5rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.example-item {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.example-item h4 {
    margin-bottom: 1rem;
}

.example-item h4 a {
    color: #ff8c00;
    text-decoration: none;
}

.example-item h4 a:hover {
    text-decoration: underline;
}

.example-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin: 0;
}

.industry-callout {
    background-color: #2a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff3333;
    margin-top: 2rem;
}

.industry-callout p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin: 0;
}

.collect-nothing-big {
    text-align: center;
    margin: 2rem 0;
}

.collect-nothing-big h3 {
    color: #ff8c00;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.empty-list {
    background-color: #0f0f0f;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #2a2a2a;
}

.empty-list p {
    color: #6b7280;
    font-style: italic;
    font-size: 1.125rem;
    margin: 0;
}

.technical-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background-color: #0f0f0f;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.tech-item h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tech-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.right-item h4 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.right-item p {
    color: #a1a1aa;
    font-size: 0.95rem;
    margin: 0;
}

.privacy-footer {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    text-align: center;
    margin-top: 3rem;
}

.privacy-footer h3 {
    color: #ff8c00;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.privacy-footer p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-footer p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Beta Reviews Section */
.beta-reviews {
    background-color: #0f0f0f;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.beta-reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

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

.review-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    border-color: #555;
}

.review-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e5e5e5;
    font-style: italic;
}

.reviewer {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a1a1aa;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    margin: -0.25rem 0;
}

.contact-link:hover {
    color: #ff8c00 !important;
    background-color: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-1px);
}

.contact-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-text {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .screenshots-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .screenshot-item {
        padding: 1.5rem;
    }
    
    .framed-screenshot {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .mockups-container {
        flex-direction: column;
        align-items: center;
    }
    
    .iphone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        display: block;
        margin: 0.5rem auto;
        width: fit-content;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Modal responsive adjustments */
    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-screenshot {
        max-width: 250px;
    }
}

/* Trust Verification Section */
.trust-verification {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.trust-verification h2 {
    text-align: center;
}

.trust-intro {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.plot-twist {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ff8c00;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.2);
}

.plot-twist h3 {
    color: #ff8c00;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.verification-methods {
    margin: 3rem 0;
}

.verification-methods > h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

.verification-item {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
}

.verification-item h4 {
    color: #ff8c00;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.paranoia-check {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    margin-top: 1.5rem;
}

.paranoia-check p {
    margin-bottom: 0.5rem;
}

.paranoia-check p:last-child {
    margin-bottom: 0;
    color: #ff8c00;
}

.trust-conclusion {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.1);
}

.trust-conclusion h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.trust-conclusion p {
    font-size: 1.125rem;
    color: #e5e5e5;
    margin-bottom: 0;
}

/* TestFlight Privacy Disclosure */
.testflight-privacy-disclosure {
    background-color: #1a1a1a;
    border: 2px solid #ff8c00;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.2);
}

.testflight-privacy-disclosure h3 {
    color: #ff8c00;
    text-align: center;
    margin-bottom: 1rem;
}

.disclosure-intro {
    text-align: center;
    color: #a1a1aa;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.data-category {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.data-category h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.data-category ul {
    list-style: none;
    padding: 0;
}

.data-category li {
    color: #a1a1aa;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.data-category li:before {
    content: "•";
    color: #ff8c00;
    position: absolute;
    left: 0;
}

.data-category li strong {
    color: #e5e5e5;
}

.disclosure-footer {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2a2a2a;
    margin-top: 2rem;
}

.disclosure-footer p {
    color: #e5e5e5;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.app-store-alternative {
    background-color: rgba(0, 255, 136, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    margin-top: 1.5rem;
}

.app-store-alternative p:first-child {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-store-alternative p:last-child {
    color: #e5e5e5;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile responsiveness for TestFlight disclosure */
@media (max-width: 768px) {
    .testflight-data-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testflight-privacy-disclosure {
        padding: 1.5rem;
    }
}

/* FAQ Infobox */
.faq-infobox {
    background: linear-gradient(135deg, #2a1810 0%, #1a1a1a 100%);
    border: 3px solid #ff8c00;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-infobox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00 0%, #ffa500 50%, #ff8c00 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.faq-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-counter {
    background-color: #ff8c00;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.big-yes {
    font-size: 4rem;
    font-weight: 900;
    color: #00ff88;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin: 1rem 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reassurance {
    text-align: center;
    font-size: 1.3rem;
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.data-migration-explanation {
    background-color: rgba(255, 140, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.data-migration-explanation p {
    color: #e5e5e5;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.encouragement {
    background-color: rgba(0, 255, 136, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
}

.encouragement p {
    color: #00ff88;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.encouragement p:last-child {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.1rem;
}

.promise-seal {
    background-color: rgba(255, 140, 0, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    text-align: center;
    margin-top: 1.5rem;
}

.promise-seal p {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-infobox {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .big-yes {
        font-size: 3rem;
    }
    
    .faq-header h3 {
        font-size: 1.3rem;
    }
    
    .reassurance {
        font-size: 1.1rem;
    }
}