/* ============================================
   ShoreTimer - Landing Page Styles
   Refined Nautical Luxury Design
   ============================================ */

/* Body Override for Landing */
body {
    overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #3d5a73 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 12rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(38, 166, 154, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 1;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    z-index: 1;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
}

.wave-back {
    opacity: 0.4;
}

.wave-mid {
    opacity: 0.6;
}

.wave-front {
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--coral);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--coral);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-store svg {
    width: 26px;
    height: 26px;
}

.store-text {
    text-align: left;
}

.store-text span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 500;
}

.store-text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.device-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.device-screen {
    background: linear-gradient(180deg, #1a2634 0%, var(--navy) 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    aspect-ratio: 9/19;
    overflow: hidden;
}

.device-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
}

.screenshot-placeholder {
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    border-radius: 28px;
    aspect-ratio: 9/19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 2rem;
}

.screenshot-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.screenshot-hint {
    font-size: 0.8rem;
    opacity: 0.5;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.floating-card.timer {
    top: 10%;
    left: -60px;
    animation-delay: 0s;
}

.floating-card.distance {
    top: 45%;
    right: -70px;
    animation-delay: 1.3s;
}

.floating-card.status {
    bottom: 25%;
    left: -40px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8787 100%);
}

.floating-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #4db6ac 100%);
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.floating-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.floating-text span {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== SECTION STYLES ========== */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-label svg {
    width: 16px;
    height: 16px;
}

.section-title {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    display: block;
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 4rem 2rem 7rem;
    background: var(--white);
}

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

.feature-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8787 100%);
}

.feature-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #4db6ac 100%);
}

.feature-icon.navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.feature-icon.amber {
    background: linear-gradient(135deg, #F59E0B 0%, #fbbf24 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 100%);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    padding: 7rem 2rem;
    background: var(--cream);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--coral) 0%, #ff8787 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.step-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--coral) 0%, var(--gray-200) 100%);
    margin-top: 0.75rem;
}

.step:last-child .step-line {
    display: none;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step:nth-child(even) .step-card {
    flex-direction: row-reverse;
}

.step-card {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon.coral {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8787 100%);
}

.step-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #4db6ac 100%);
}

.step-icon.navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.step-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SCREENSHOTS SECTION ========== */
.screenshots {
    padding: 7rem 2rem;
    background: var(--navy);
    overflow: hidden;
}

.screenshots .section-label {
    color: var(--coral);
}

.screenshots .section-title {
    color: var(--white);
}

.screenshots .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.screenshots-scroll-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-scroll-wrapper::before,
.screenshots-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.screenshots-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.screenshots-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.screenshots-scroll {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshots-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem;
}

.screenshot-item {
    flex-shrink: 0;
    width: 200px;
    scroll-snap-align: center;
    text-align: center;
}

.screenshot-device {
    background: var(--navy);
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-device {
    transform: translateY(-8px);
}

.screenshot-screen {
    background: var(--navy);
    border-radius: 22px;
    aspect-ratio: 9/19;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    padding: 1rem;
}

.placeholder-content svg {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
}

.placeholder-content p {
    font-size: 0.7rem;
    margin: 0;
}

.screenshot-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 7rem 2rem;
    background: var(--cream);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
}

.testimonial-info strong {
    display: block;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.2;
}

/* ========== PRICING SECTION ========== */
.pricing {
    padding: 7rem 2rem;
    background: var(--white);
}

.pricing-features-grid {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    background: var(--gray-200);
}

.currency-btn.active {
    background: var(--navy);
    color: var(--white);
}

.pricing-cards {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-cards.compact {
    max-width: 700px;
}

.pricing-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name {
    color: var(--white);
}

.pricing-price {
    margin: 1rem 0;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--coral);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-400);
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price .savings {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.pricing-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--navy);
}

.btn-secondary:hover {
    background: var(--gray-400);
    color: var(--white);
}

.pricing-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ========== DOWNLOAD CTA SECTION ========== */
.download-cta {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, #4db6ac 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta::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%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.download-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.download-cta .section-title {
    color: var(--white);
}

.download-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: none;
}

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

.store-buttons .btn-store {
    background: var(--navy);
    border: none;
}

.store-buttons .btn-store:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========== SIGNUP FORM ========== */
.signup-form-wrapper {
    max-width: 500px;
    margin: 2rem auto 0;
}

.interest-form {
    position: relative;
}

.signup-input-group {
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.signup-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--navy);
    outline: none;
    min-width: 0;
}

.signup-input-group input::placeholder {
    color: var(--gray-400);
}

.btn-signup {
    border-radius: 50px;
    padding: 1rem 1.75rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-signup svg {
    width: 18px;
    height: 18px;
}

.btn-signup:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-signup .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.signup-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.signup-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.signup-message.success {
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal);
}

.signup-message.error {
    background: rgba(255, 255, 255, 0.95);
    color: var(--coral);
}

.signup-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero CTA buttons */
.btn-hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-hero-cta svg {
    width: 22px;
    height: 22px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .device-mockup {
        max-width: 250px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 10rem;
        min-height: auto;
    }

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

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

    .features,
    .how-it-works,
    .screenshots,
    .testimonials,
    .pricing,
    .download-cta {
        padding: 5rem 1.5rem;
    }

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

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

    .step,
    .step:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-card,
    .step:nth-child(even) .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-line {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        text-align: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-buttons .btn-store {
        width: 100%;
        max-width: 280px;
    }

    .signup-input-group {
        flex-direction: column;
        border-radius: 16px;
        padding: 0.75rem;
    }

    .signup-input-group input {
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .btn-signup {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .signup-message {
        border-radius: 16px;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Scroll margin for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}
