/* Hero Section */
.hero {
    min-height: calc(100vh - 80px); /* Fill initial screen */
    display: flex;
    align-items: center;
    background: var(--background);
    overflow: visible;
    position: relative;
    padding: 2rem 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.hero-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 650px;
}

.hero-showcase .iphone-3d-wrapper {
    position: absolute;
}

.hero-phone-1 {
    z-index: 2;
    transform: translateX(-150px) rotateY(-15deg) rotateX(5deg);
}

.hero-phone-2 {
    z-index: 2;
    transform: translateX(150px) rotateY(-15deg) rotateX(5deg);
    opacity: 1;
}

/* Scrollable Screen Utility */
.hero-phone-2 .iphone-screen-wrap {
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for clean look in Firefox */
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.hero-phone-2 .iphone-screen-wrap.grabbing {
    cursor: grabbing;
}

.hero-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: #ffffff;
    z-index: 10;
    opacity: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.hero-arrow svg {
    width: 48px;
    height: 48px;
}

.hero-phone-2 .iphone-screen-wrap::-webkit-scrollbar {
    display: none; /* Hide scrollbar for clean look in Chrome/Safari */
}

.hero-phone-2 .iphone-screen-image {
    height: auto; /* Allow image to be taller than screen */
    object-fit: contain; /* Ensure full width is preserved */
    vertical-align: top;
}

/* Override float animation for hero phones to keep them static as requested */
.hero-phone-1 .iphone-15,
.hero-phone-2 .iphone-15 {
    animation: none !important;
}

/* Custom HTML iPhone 15 */
.iphone-3d-wrapper {
    position: relative;
    width: 280px;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.iphone-15 {
    position: relative;
    width: 270px;
    height: 562px;
    animation: float-iphone 5s ease-in-out infinite;
    transition: transform 0.1s ease-out; /* Smooth mouse tracking */
    transform-style: preserve-3d;
}

@keyframes float-iphone {
    0%, 100% { transform: translateY(0) rotateY(-4deg) rotateX(2deg); }
    50% { transform: translateY(-14px) rotateY(4deg) rotateX(-2deg); }
}

.iphone-frame {
    position: absolute;
    inset: 0;
    border-radius: 52px;
    background: linear-gradient(145deg, #333333 0%, #1a1a1a 15%, #444444 25%, #111111 40%, #222222 55%, #444444 70%, #1a1a1a 85%, #0a0a0a 100%);
    box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 20px 50px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
}

.iphone-back {
    position: absolute;
    inset: 3px;
    border-radius: 50px;
    background: linear-gradient(155deg, #1a1a1a 0%, #0a0a0a 50%, #111111 100%);
}

.iphone-screen-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 43px;
    overflow: hidden;
    background: #000;
}

.iphone-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Add this to prevent browser drag interference */
}

.iphone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Move camera to the left */
    padding-left: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.iphone-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #1b3d5c 0%, #04101e 60%, #020c18 100%);
    border: 1px solid #07192a;
    box-shadow: inset 0 0 4px rgba(0,60,160,0.4);
}

.iphone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
    z-index: 30;
}

.iphone-glass {
    position: absolute;
    inset: 0;
    border-radius: 43px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.02) 100%);
    z-index: 50;
    pointer-events: none;
    overflow: hidden;
}

.iphone-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    transition: transform 0.1s ease-out;
}

.iphone-shadow-ground {
    width: 300px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 75%);
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

@keyframes shadow-anim {
    0%, 100% { transform: translateX(-50%) scaleX(0.9); opacity: 0.5; }
    50% { transform: translateX(-50%) scaleX(1.1); opacity: 0.3; }
}

.iphone-btn {
    position: absolute;
    background: linear-gradient(90deg, #1a1a1a 0%, #333333 50%, #111111 100%);
    z-index: 10;
}

.btn-mute { left: -3.5px; top: 120px; width: 3.5px; height: 30px; border-radius: 2px 0 0 2px; }
.btn-vup { left: -3.5px; top: 172px; width: 3.5px; height: 52px; border-radius: 2px 0 0 2px; }
.btn-vdn { left: -3.5px; top: 238px; width: 3.5px; height: 52px; border-radius: 2px 0 0 2px; }
.btn-pwr { right: -3.5px; top: 182px; width: 3.5px; height: 72px; border-radius: 0 2px 2px 0; }

.phone-img {
    flex: 1;
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.p1,
.p2 {
    transform: none;
}

.phone-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Neutral shadow instead of green */
    z-index: 10;
    filter: brightness(1.02);
}

/* Included Section */
.included-section {
    padding: 4rem 0;
    background: #F8FAFC;
}

/* Math-calibrated frame for 1080x2340 screenshots (ratio 6:13) */
.included-section .iphone-3d-wrapper {
    width: 292px;
    height: 626px;
}

.included-section .iphone-15 {
    width: 272px;
    height: 564px;
}

.included-section .iphone-screen-wrap.included-phone {
    position: absolute;
    top: 11px;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 542px;
    transform: translateX(-50%);
    margin: 0;
    max-width: none;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.included-section .iphone-screen-wrap.included-phone::-webkit-scrollbar {
    display: none;
}

.included-section .iphone-screen-wrap.included-phone.grabbing {
    cursor: grabbing;
}

.included-section .iphone-screen-wrap.included-phone .iphone-screen-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, scroll-position;
}

.included-title {
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    width: 100%;
}

.included-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.included-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
}

.included-phone {
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* Base for overlay transition */
}

.phone-img-detailed {
    width: 100%;
    height: auto;
    display: block;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.feature-item.active {
    background: var(--background);
    border-color: var(--text-muted);
}

.feature-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Phone Dots Navigation */
.phone-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
}

.phone-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-dots .dot:hover {
    background: var(--text-muted);
    transform: scale(1.1);
}

.phone-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.pricing {
    padding: 2rem 0 4rem; /* Reduced top padding since hero has padding */
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #F8FAFC;
    padding: 4rem 3rem;
    border-radius: 3rem;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    z-index: 1;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.save-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ecfdf5;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-price span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.pricing-price span:last-child {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 0.25rem;
}

.price-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 3.5rem;
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 1rem;
}

/* FAQ Section */
/* FAQ Section Refined */
.faq {
    padding: 4rem 0;
    background: var(--background);
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    background: var(--background);
    padding: 0.5rem;
    border-radius: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.faq-tab {
    flex: 1;
    padding: 1.125rem 0.5rem;
    border: none;
    background: transparent;
    border-radius: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
}

.faq-tab.active {
    background: #F8FAFC;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-tab:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.5);
}

.faq-category-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.faq-category-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .faq-tabs {
        flex-wrap: wrap;
        padding: 0.75rem;
    }
    
    .faq-tab {
        flex: calc(50% - 0.75rem);
        padding: 0.75rem 0.25rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .faq-tab {
        flex: 100%;
    }
}

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

.faq-item {
    background: #F8FAFC;
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
    text-align: center;
    border-radius: 4rem;
    margin: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.download-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.download-section p {
    margin-bottom: 4rem;
    opacity: 0.7;
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-container:hover {
    transform: translateY(-8px);
}

.badge-circle {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.store-badge {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.badge-desc {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Content & Policies */
.content-card {
    background: #F8FAFC;
    border-radius: 1.5rem;
    padding: 4rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    margin: 2rem 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--background);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.contact-info h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.05);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Feature Section (Why NutriPrime) */
.features {
    padding: 4rem 0 0 0;
    background: #F8FAFC;
}

.section-title {
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

/* Features (Why Us) Section Enhancements */
.features {
    padding: 4rem 0;
    background: #F8FAFC;
}

.feature-card {
    background: #F8FAFC;
    padding: 2.5rem; /* Re-introduced padding */
    border-radius: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: var(--text-muted);
}

.feature-icon-flush {
    width: 100%;
    height: 156px; /* Decreased by 35% from 240px */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-body {
    padding: 0;
    width: 100%;
}

.feature-card-body h3 {
    margin-bottom: 0.75rem;
}

.feature-image-asset {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* CTA Micro-interactions */
.features-cta-wrap {
    text-align: center;
    margin-top: 4rem;
}

.btn-features-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-features-cta:hover {
    background: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Support Page Styles */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.support-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 2.5rem;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--text-muted);
}

.support-card h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.support-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.support-card .legal-list {
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.support-card .legal-list ul {
    list-style: none;
    padding: 0;
}

.support-card .legal-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.support-card .legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
}

.support-card .legal-list strong {
    color: var(--text-primary);
}

.support-card .btn {
    width: fit-content;
}

@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Overrides and New Sections */
.hero-cta {
    align-items: center;
}

.demo-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.demo-link:hover {
    color: var(--primary);
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 4rem 0;
    background: var(--background);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.lifestyle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lifestyle-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.lifestyle-item img:hover {
    transform: translateY(-10px);
}

.lifestyle-item p {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 600;
    max-width: 320px;
}

@media (max-width: 992px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .lifestyle-item img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .lifestyle-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem 1.5rem 3rem;
        margin: 0 -1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: calc(100% + 3rem);
    }

    .lifestyle-grid::-webkit-scrollbar {
        display: none;
    }

    .lifestyle-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .lifestyle-item img {
        height: 450px;
        margin-bottom: 1.5rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    
    .lifestyle-item p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 500;
}

.step-num {
    display: block;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    line-height: 32px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.demo-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.founder-message {
    padding: 2rem;
}

.founder-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.founder-message p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
}

.low-risk-section {
    padding: 4rem 0;
    background: var(--background);
}

.low-risk-card {
    background: var(--background);
    padding: 4rem;
    border-radius: 3rem;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.low-risk-card h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.low-risk-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.risk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.risk-icon {
    font-size: 2rem;
}

.risk-step p {
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .credibility-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tech-demo { padding: 1.5rem; }
    .demo-arrow { display: none; }
    .low-risk-steps { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; text-align: center; }
    .demo-link { margin-left: 0; margin-top: 1rem; }
    .pricing-justification { padding: 1.5rem; margin-bottom: 2rem; }
    .pricing-faq { margin-top: 4rem; padding-top: 4rem; }
}

/* Pricing Page Specifics */
.pricing-justification {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid #dcfce7;
    text-align: center;
}

.pricing-justification p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #166534;
    font-weight: 500;
}

.pricing-faq {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

/* Final Decorative Banner */
.final-footer-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    display: block;
    background: #F8FAFC; /* Matching the updated footer base */
}

.final-footer-banner img {
    width: 100%;
    height: auto;
    display: block;
}
