/* ========================================
   Home Page Specific
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem var(--space-md) var(--space-lg);
    z-index: 1;
}

.hero__content {
    max-width: 900px;
    text-align: center;
}

.hero__badge {
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-gentle) both;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--earth-dark);
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-gentle) 0.1s both;
}

.hero__title--warm {
    color: var(--coral-deep);
}

.hero__description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--earth);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-gentle) 0.2s both;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInUp 0.8s var(--ease-gentle) 0.3s both;
}

.hero__sublink {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s var(--ease-gentle);
    text-decoration: none;
}

.hero__sublink:hover {
    color: var(--coral-deep);
}

.hero__sublink svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-gentle);
}

.hero__sublink:hover svg {
    transform: translateX(4px);
}

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

/* Wave Divider */
.hero-wave {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-top: -15vh;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 100px;
    max-height: 150px;
}

/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Value Props */
.values {
    padding: var(--space-3xl) var(--space-md);
    background: var(--cream);
}

.values__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    padding: 3rem 2rem;
    text-align: center;
}

.value-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--coral-deep);
}

.value-card__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--earth-dark);
}

.value-card p {
    color: var(--earth);
}

/* Showcase carousel */
.showcase {
    padding: var(--space-3xl) 0;
    background: var(--coral-pale);
    overflow: hidden;
}

.showcase__header {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    padding: 0 var(--space-md);
}

.showcase__header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--earth-dark);
}

.showcase-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 280px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(107, 92, 78, 0.1);
    transition: transform 0.4s var(--ease-organic);
}

.showcase-card:hover {
    transform: scale(1.03);
}

.showcase-card__image {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    background: var(--sand);
}

.showcase-card__content {
    padding: var(--space-md);
}

.showcase-card__content h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--earth-dark);
}

.showcase-card__content p {
    font-size: 0.9375rem;
    color: var(--earth);
}

.showcase__carousel {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-lg);
    padding: var(--space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.showcase__carousel::-webkit-scrollbar {
    display: none;
}

/* Screenshot rows in steps */
.screenshot-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.screenshot-row img {
    height: auto;
    max-width: 320px;
    border-radius: 20px;
    border: 1px solid rgba(232, 165, 152, 0.2);
    box-shadow: 0 12px 40px rgba(107, 92, 78, 0.15);
    transition: transform 0.3s var(--ease-organic);
}

.screenshot-row img:hover {
    transform: scale(1.02);
}

/* Feature Grid */
.features {
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    z-index: 1;
}

.features__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.features__header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--earth-dark);
}

.features__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: 24px;
    transition: background 0.3s var(--ease-gentle);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.feature-item__dot {
    width: 12px;
    height: 12px;
    background: var(--coral-deep);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.feature-item__content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--earth-dark);
}

.feature-item__content p {
    font-size: 0.9375rem;
    color: var(--earth);
}

/* Trust Banner */
.trust {
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    background: var(--earth-dark);
    color: white;
    z-index: 1;
    text-align: center;
}

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

.trust__content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.trust__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.trust__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
}

.trust-point svg {
    width: 18px;
    height: 18px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    z-index: 1;
    text-align: center;
}

.cta-section__content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__content h2 {
    margin-bottom: var(--space-md);
}

.cta-section__content p {
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* Tips Section */
.tab-panel h2 {
    margin-bottom: var(--space-lg);
    color: var(--earth-dark);
}

.tips-section {
    margin-bottom: var(--space-xl);
}

.tips-section:last-child {
    margin-bottom: 0;
}

.tips-section h3 {
    color: var(--coral-deep) !important;
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.tips-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: var(--space-md);
}

.tips-section li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--earth);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.tips-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral-deep);
    font-size: 1.5rem;
    line-height: 1;
    top: 0.4rem;
}

.tips-section p {
    margin-bottom: var(--space-md);
    color: var(--earth);
}

/* ========================================
   Support Specific
   ======================================== */

/* Quick Links Grid */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.quick-link {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 165, 152, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease-gentle);
    text-decoration: none;
    color: var(--earth-dark);
}

.quick-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(212, 118, 106, 0.15);
    border-color: var(--coral-warm);
    background: rgba(255, 255, 255, 0.8);
}

.quick-link__icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    color: var(--coral-deep);
}

.quick-link__svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s var(--ease-organic);
}

.quick-link:hover .quick-link__svg {
    transform: scale(1.1);
}

.quick-link span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--earth-dark);
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    margin-bottom: var(--space-md);
    font-family: var(--font-serif);
    color: var(--earth-dark);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--sage-deep), var(--sage));
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    color: white;
}

.contact-section h2 {
    color: white !important;
    margin-bottom: 0.75rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section a {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--sage-deep);
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s var(--ease-organic);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.contact-section a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Troubleshooting */
.troubleshooting-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.troubleshooting-list li {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--coral-deep);
    border-radius: 0 16px 16px 0;
    margin-bottom: 1.25rem;
    color: var(--earth);
    transition: background 0.3s var(--ease-gentle);
}

.troubleshooting-list li:hover {
    background: rgba(255, 255, 255, 0.8);
}

.troubleshooting-list strong {
    display: block;
    color: var(--earth-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}
.page-header {
    position: relative;
    padding: 10rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--coral-blush) 0%, transparent 100%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.page-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--earth);
    line-height: 1.5;
}

.main {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    z-index: 1;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 165, 152, 0.18);
    border-radius: 32px;
    transition: transform 0.3s var(--ease-gentle), box-shadow 0.3s var(--ease-gentle);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 118, 106, 0.08);
}

.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral-warm), var(--coral-deep));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(212, 118, 106, 0.3);
}

.step__content {
    flex: 1;
}

.step__content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--earth-dark);
}

.step__content p {
    margin-bottom: 1.5rem;
    color: var(--earth);
    line-height: 1.7;
}

.step__content ul {
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.step__content li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--earth);
    line-height: 1.6;
}

.step__content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral-deep);
    font-size: 1.5rem;
    line-height: 1;
    top: 0.2rem;
}

.step__content li strong {
    color: var(--earth-dark);
}

/* CSV Format Table */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(107, 92, 78, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background: linear-gradient(135deg, var(--coral-warm), var(--coral-deep));
    color: white;
    padding: 0.875rem;
    text-align: left;
}

td {
    padding: 0.875rem;
    border-bottom: 1px solid var(--sand);
}

/* FAQ Accordion */
.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 165, 152, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-gentle);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--coral-deep);
    border-radius: 2px;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease-gentle);
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

details[open] .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--earth);
    line-height: 1.7;
}

/* Privacy Page Specific */
.promise-box {
    background: linear-gradient(135deg, var(--coral-warm), var(--coral-deep));
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 118, 106, 0.2);
}

.promise-box h2 {
    color: white !important;
    margin-bottom: 1rem;
}

.promise-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem;
}

/* ========================================
   Privacy Page Specific
   ======================================== */
.privacy-page main h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--earth-dark);
    margin: 4rem 0 1.5rem;
}

.privacy-page main h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--coral-deep);
    margin: 3rem 0 1.25rem;
}

.privacy-page main p {
    margin-bottom: 1.5rem;
    color: var(--earth);
    line-height: 1.8;
}

.privacy-page main ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.privacy-page main li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--earth);
}

.privacy-page main li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral-deep);
    font-size: 1.5rem;
    line-height: 1;
    top: 0.3rem;
}

.update-notice {
    background: rgba(168, 197, 168, 0.12);
    border: 1px solid rgba(168, 197, 168, 0.25);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    margin: 2rem 0 0;
    font-size: 0.9375rem;
    color: var(--earth-dark);
    display: inline-block;
}

.update-notice strong {
    color: var(--sage-deep);
}

.promise-box {
    background: linear-gradient(135deg, var(--coral-warm), var(--coral-deep));
    border-radius: 32px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
    box-shadow: 0 15px 40px rgba(212, 118, 106, 0.15);
}

.promise-box h2 {
    color: white !important;
    margin-bottom: 1.5rem;
    margin-top: 0 !important;
    font-size: 1.75rem;
}

.promise-box ul {
    list-style: none !important;
    margin-bottom: 0 !important;
}

.promise-box li {
    padding: 0.625rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-box li:last-child {
    border-bottom: none;
}

.promise-box li::before {
    content: "✓" !important;
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    top: 0.5rem;
}

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

.data-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 165, 152, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s var(--ease-gentle);
}

.data-card:hover {
    transform: translateY(-4px);
    border-color: var(--coral-warm);
    background: rgba(255, 255, 255, 0.8);
}

.data-card h4 {
    font-family: var(--font-serif);
    color: var(--earth-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.data-card p {
    font-size: 0.9375rem;
    color: var(--earth);
    margin-bottom: 0;
}

/* ========================================
   Coming Soon Specific
   ======================================== */
.coming-soon-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.coming-soon {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.app-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(212, 118, 106, 0.25);
    animation: floatIcon 6s ease-in-out infinite;
    display: block;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(232, 165, 152, 0.25);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--coral-deep);
    margin-bottom: 2rem;
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--coral-deep);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.tagline {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--earth);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.coming-soon-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.feature-tag {
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 165, 152, 0.2);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--earth-dark);
    transition: all 0.3s var(--ease-gentle);
}

.feature-tag:hover {
    background: rgba(232, 165, 152, 0.2);
    transform: translateY(-2px);
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 165, 152, 0.2);
    border-radius: 32px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--coral-deep);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--earth);
    font-size: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--coral-deep);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s var(--ease-organic);
    box-shadow: 0 4px 20px rgba(212, 118, 106, 0.3);
}

.back-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 118, 106, 0.4);
}

.back-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-gentle);
}

.back-link:hover svg {
    transform: translateX(-4px);
}
