:root {
    --peach: #FFE5D9;
    --peach-dark: #FFCBB4;
    --coral: #FF8A6C;
    --coral-deep: #E86B4A;
    --sage: #B8D4C8;
    --sage-dark: #8FBB9E;
    --cream: #FFFBF7;
    --text-dark: #2D3436;
    --text-soft: #636E72;
    --lavender: #E8E0F0;
    --yellow-soft: #FFF3CD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating shapes background */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--peach);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--sage);
    top: 40%;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--lavender);
    bottom: 20%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--yellow-soft);
    top: 60%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(3deg);
    }
}

/* Header */
header {
    position: relative;
    z-index: 10;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--coral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.nav-cta {
    background: var(--coral);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 108, 0.3);
}

.nav-cta:hover {
    background: var(--coral-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 108, 0.4);
}

/* Hero */
.hero {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--coral);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--peach);
    z-index: -1;
    border-radius: 4px;
}

.hero-tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--coral);
    margin-bottom: 24px;
    transform: rotate(-2deg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-soft);
    margin-bottom: 24px;
    max-width: 520px;
}

/* First Month Benefits */
.first-month-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.benefit-tag {
    background: var(--sage);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Scarcity Badge */
.scarcity-badge {
    background: linear-gradient(135deg, #FFE5D9 0%, #FFCBB4 100%);
    border: 2px solid var(--coral);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--coral-deep);
    animation: pulse 2s ease-in-out infinite;
}

.scarcity-badge svg {
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* iPhone Mockup */
.iphone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.iphone-frame {
    width: 320px;
    height: 650px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #2a2a2a,
        0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-1deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF 100%);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-content.active {
    opacity: 1;
}

/* Screen 1: Voice Command */
.siri-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100px;
    margin-bottom: 32px;
}

.wave-bar {
    width: 8px;
    background: linear-gradient(180deg, var(--coral) 0%, var(--coral-deep) 100%);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 30px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 50px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 70px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 50px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    height: 30px;
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

.voice-command {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 32px;
}

.siri-icon {
    width: 80px;
    height: 80px;
    color: var(--coral);
    animation: pulse-icon 2s ease-in-out infinite;
}

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

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Screen 2: Logging */
.success-checkmark {
    width: 100px;
    height: 100px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: scale-in 0.5s ease;
}

.success-checkmark svg {
    width: 50px;
    height: 50px;
    fill: var(--text-dark);
}

@keyframes scale-in {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.screen-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.activity-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 240px;
}

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

.activity-details {
    flex: 1;
}

.activity-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.activity-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 4px;
}

.activity-time {
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* Screen 3: Dashboard */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.mini-stat {
    background: white;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 4px;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 600;
}

.recent-activities {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recent-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.recent-item:last-child {
    border-bottom: none;
}

.mockup-caption {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 600;
    text-align: center;
}


/* Email Form */
.email-form {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.email-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--peach-dark);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 138, 108, 0.1);
}

.email-form button {
    background: var(--coral);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hero CTA Group */
.hero-cta-group {
    margin-top: 32px;
}

.hero-app-note {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 12px;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--peach-dark);
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.trust-item {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Value Comparison */
.value-comparison {
    margin-bottom: 8px;
}

.value-compare-old {
    font-size: 0.9rem;
    color: var(--text-soft);
    text-decoration: line-through;
    font-weight: 600;
}

/* Price Anchor */
.price-anchor {
    font-size: 0.95rem;
    color: var(--coral-deep);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 4px;
}

/* Guarantee Section */
.guarantee-section {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.6;
    padding: 24px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--sage);
}

/* Problem Section */
.problem-section {
    position: relative;
    z-index: 10;
    background: white;
    padding: 100px 40px;
}

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

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-deep);
}

.problem-icon svg {
    width: 40px;
    height: 40px;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Caveat', cursive;
    color: var(--coral-deep);
}

.problem-card p {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.problem-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--peach) 0%, var(--lavender) 100%);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.problem-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.problem-cta p {
    font-size: 1.3rem;
    color: var(--text-soft);
    font-weight: 600;
}

/* Features Section */
.features {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--peach);
}

.feature-card:nth-child(1) .feature-icon svg {
    fill: var(--coral-deep);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--lavender);
}

.feature-card:nth-child(2) .feature-icon svg {
    fill: #9B7FB8;
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--sage);
}

.feature-card:nth-child(3) .feature-icon svg {
    fill: var(--sage-dark);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--yellow-soft);
}

.feature-card:nth-child(4) .feature-icon svg {
    fill: #D4A017;
}

.feature-card:nth-child(5) .feature-icon {
    background: var(--peach);
}

.feature-card:nth-child(5) .feature-icon svg {
    fill: var(--coral-deep);
}

.feature-card:nth-child(6) .feature-icon {
    background: #E0F2F7;
}

.feature-card:nth-child(6) .feature-icon svg {
    fill: #0277BD;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    position: relative;
    z-index: 10;
    background: white;
    padding: 100px 40px;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: var(--text-dark);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--cream);
    padding: 32px;
    border-radius: 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.step-content .voice-example {
    background: white;
    border: 2px solid var(--peach-dark);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
    font-weight: 700;
    color: var(--coral-deep);
    font-size: 1.1rem;
}

.step-content .voice-example span {
    color: var(--text-soft);
    font-weight: 600;
}

/* Platform badges */
.platform-note {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 600;
}

.platform-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--text-soft);
}

/* Dashboard Preview */
.dashboard-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.dashboard-preview {
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-date {
    color: var(--text-soft);
    font-weight: 600;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.stat-card:nth-child(1) {
    border-left: 4px solid var(--coral);
}

.stat-card:nth-child(2) {
    border-left: 4px solid #FF9E80;
}

.stat-card:nth-child(3) {
    border-left: 4px solid var(--sage-dark);
}

.stat-card:nth-child(4) {
    border-left: 4px solid #B8A4C8;
}

.stat-card:nth-child(5) {
    border-left: 4px solid #E8C872;
}

.stat-label-top {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-unit {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 600;
}

/* Pricing */
.pricing {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--peach) 0%, var(--cream) 100%);
    padding: 100px 40px;
    text-align: center;
}

.price-card {
    background: white;
    border-radius: 32px;
    padding: 36px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.price-badge {
    background: var(--sage);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral-deep);
}

.price-amount span {
    font-size: 1.2rem;
    color: var(--text-soft);
}

.price-note {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 24px;
}

.price-features {
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
}

.price-features li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--text-dark);
}

.price-cta {
    width: 100%;
    background: var(--coral);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-cta:hover {
    background: var(--coral-deep);
    transform: translateY(-2px);
    text-decoration: none;
}

.price-cta-secondary {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.price-cta-secondary:hover {
    background: var(--coral);
    color: white;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Two-column pricing grid variant */
.pricing-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.price-card-featured {
    border: 3px solid var(--coral);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 138, 108, 0.2);
}

.price-card-featured .price-badge {
    background: var(--coral);
    color: white;
}

.price-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* App Store Button */
.app-store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #000;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-store-btn svg {
    fill: white;
}

.app-store-btn .small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-store-btn .big {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    color: var(--text-soft);
}

footer a {
    color: var(--coral);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .iphone-mockup {
        margin-top: 40px;
    }

    .iphone-frame {
        width: 280px;
        height: 570px;
    }

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

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

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

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

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .trust-bar {
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card-featured {
        transform: scale(1);
        order: -1;
    }
}

@media (max-width: 600px) {
    header {
        padding: 16px 20px;
    }

    .hero {
        padding: 40px 20px 60px;
    }

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

    .voice-demo {
        padding: 24px;
    }

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

    .price-amount {
        font-size: 3rem;
    }
}

/* App Showcase Section */
.app-showcase {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream) 0%, #f5f5f5 100%);
}

.showcase-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.phone-showcase {
    text-align: center;
    transition: transform 0.4s ease;
}

.phone-showcase:hover {
    transform: translateY(-10px);
}

.phone-showcase.featured {
    transform: scale(1.1);
    z-index: 2;
}

.phone-showcase.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.phone-mockup-showcase {
    position: relative;
}

.phone-bezel {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 2px #333,
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch-small {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screenshot {
    width: 200px;
    height: auto;
    border-radius: 28px;
    display: block;
}

.phone-caption {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* Responsive for App Showcase */
@media (max-width: 768px) {
    .showcase-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .phone-showcase.featured {
        transform: scale(1);
        order: -1;
    }

    .phone-showcase.featured:hover {
        transform: translateY(-10px);
    }

    .phone-screenshot {
        width: 180px;
    }
}