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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: inline-block;
}

.mobile-outline {
    width: 20px;
    height: 32px;
    border: 2px solid currentColor;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    transform: rotate(-15deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform-style: preserve-3d;
}

.mobile-outline::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background: currentColor;
    border-radius: 1px;
}

.mobile-outline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 1px;
    background: currentColor;
    border-radius: 1px;
}

.mobile-screen {
    position: absolute;
    top: 3px;
    left: 2px;
    right: 2px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.post-icon {
    font-size: 10px;
    line-height: 1;
    transform: rotate(15deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.logo:hover .mobile-outline {
    transform: rotate(-10deg);
}

.logo:hover .post-icon {
    transform: rotate(10deg) scale(0.9);
}

/* Hero section mobile icon */
.hero-mobile {
    width: 24px;
    height: 38px;
    transform: rotate(-12deg);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform-style: preserve-3d;
}

.hero-mobile .mobile-screen {
    top: 4px;
    left: 2px;
    right: 2px;
    bottom: 6px;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-mobile .post-icon {
    font-size: 12px;
    transform: rotate(12deg);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.preview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e40af;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e40af;
}

.cta-button {
    background: linear-gradient(135deg, #1e40af, #06b6d4);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 13rem 0 8rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.primary-button {
    background: linear-gradient(135deg, #1e40af, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.secondary-button {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
    width: fit-content;
}

.shield {
    font-size: 1.2rem;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    transform: rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: slideDownPhone 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(-100px);
    will-change: transform, opacity;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.preview-title {
    font-weight: 600;
    color: #1e40af;
}

.preview-icon {
    font-size: 1.5rem;
}

.preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
}

.preview-doc {
    font-size: 1.5rem;
}

.preview-text .preview-title {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.preview-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.preview-scan-button {
    background: linear-gradient(135deg, #1e40af, #06b6d4);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #06b6d4;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-cta {
    display: inline-block;
    color: #06b6d4;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    color: #0891b2;
    transform: translateX(3px);
}

/* Privacy Section */
.privacy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.privacy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.privacy-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.privacy-feature p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.device-icon {
    font-size: 4rem;
}

.privacy-shield {
    font-size: 3rem;
}

.privacy-text-small {
    font-weight: 600;
    color: #166534;
}

.no-cloud {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cloud-crossed {
    font-size: 2rem;
    opacity: 0.3;
}

.no-symbol {
    font-size: 1.5rem;
    color: #dc2626;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fff2f2 100%);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.before, .after {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.before {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.after {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.before h3, .after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.scenario {
    text-align: left;
}

.scenario p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.scenario p strong {
    color: #1e40af;
    font-weight: 600;
}

.testimonial-style {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.quote-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: #ffffff;
}

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

.use-case {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: #06b6d4;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.use-case p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #fef7f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306b6d4' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Enhanced Privacy Section */
.privacy {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #fef7f0 100%);
    position: relative;
}

/* Personal Info Section */
.personal-info {
    padding: 6rem 0;
    background: #ffffff;
}

.personal-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.personal-info-visual {
    display: flex;
    justify-content: center;
}

.info-card-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.info-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.info-card-content {
    flex: 1;
}

.info-card-icon {
    font-size: 4.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.info-card-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.info-pill {
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
}

.info-pill-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.info-pill-orange {
    background-color: #fed7aa;
    color: #c2410c;
}

.info-pill-grey {
    background-color: #e5e7eb;
    color: #4b5563;
}

.personal-info-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.personal-info-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.personal-info-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.personal-info-feature p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .personal-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-card-preview {
        max-width: 100%;
    }
}

/* Pricing Teaser Section */
.pricing-teaser {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #fef7f0 100%);
    position: relative;
}

.pricing-teaser .section-header h2 {
    color: #1a1a1a;
}

.pricing-teaser .section-header p {
    color: #6b7280;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.competitor-pricing, .pocketpost-pricing {
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competitor-pricing:hover, .pocketpost-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.competitor-pricing {
    border: 2px solid #e5e7eb;
}

.pocketpost-pricing {
    border: 2px solid #06b6d4;
    position: relative;
}

.pocketpost-pricing::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #06b6d4;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.competitor-pricing h3, .pocketpost-pricing h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.tier-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.price-highlight {
    font-size: 3rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.competitor-pricing .price-highlight {
    color: #1a1a1a;
}

.price-features {
    text-align: left;
    margin-top: 1.5rem;
}

.price-features div {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.price-features div:last-child {
    border-bottom: none;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6b7280;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.pricing-cta-primary {
    background: #06b6d4;
    color: white;
}

.pricing-cta-primary:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.pricing-cta-secondary {
    background: transparent;
    color: #06b6d4;
    border: 2px solid #06b6d4;
}

.pricing-cta-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

.pricing-notes {
    margin-top: 3rem;
    text-align: center;
}

.pricing-note {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af, #06b6d4);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.early-access-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
}

.submit-button {
    background: #ffffff;
    color: #1e40af;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.form-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.app-store-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.app-store-button {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.app-store-button img {
    display: block;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-text p a {
    color: #9ca3af;
    text-decoration: none;
    pointer-events: none;
}

/* Legal Pages */
.legal-content {
    padding: 8rem 0 4rem;
    background: #ffffff;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #0891b2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 0.5rem 2rem;
        width: 100%;
        text-align: left;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        display: contents;
    }

    .hero-text h1 {
        order: 1;
        font-size: 2.5rem;
    }

    .hero-image {
        order: 2;
    }

    .hero-text .hero-subtitle {
        order: 3;
    }

    .hero-text .hero-buttons {
        order: 4;
    }

    .hero-text .privacy-badge {
        order: 5;
        margin: 0 auto;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .phone-wrapper {
        transform: rotate(0deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .privacy-features {
        text-align: left;
    }

    .privacy-diagram {
        display: none;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-group input {
        min-width: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .legal-wrapper {
        padding: 0 1rem;
    }

    .legal-content {
        padding: 8rem 0 4rem;
    }
}

/* iPad and tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .personal-info-content {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .privacy-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .info-card-title {
        font-size: 1rem;
    }

    .info-pill {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
    }

    .info-card-icon {
        font-size: 3.5rem;
    }

    .pricing-note {
        font-size: 0.85rem;
    }

    .app-store-button img {
        height: 50px !important;
    }

    .legal-wrapper h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }

    /* Touch-friendly buttons on mobile */
    .primary-button,
    .secondary-button,
    .pricing-cta {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
    }
}