/* ===== CSS Variables ===== */
:root {
    --primary: #ff6b9d;
    --primary-dark: #e84a7f;
    --secondary: #c44569;
    --accent: #ffd93d;
    --bg-dark: #1a1a2e;
    --bg-light: #fff5f8;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff8a5c 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --shadow-soft: 0 10px 40px rgba(255, 107, 157, 0.15);
    --shadow-strong: 0 20px 60px rgba(255, 107, 157, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Floating Hearts ===== */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-hearts .heart {
    position: absolute;
    font-size: 20px;
    animation: floatHeart 15s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 24px;
}

/* Navbar styles moved to header.php for better availability */


.hero {
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 80vh;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1300px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff6b9d' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom/cover no-repeat;
}

.hero-content {
    flex: 1;
    max-width: 580px;
    z-index: 1;
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Hero Visual ===== */
.hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    margin-left: -20px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2d2d4a, #1a1a2e);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ff6b9d20, #c4456920);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-preview {
    text-align: center;
    padding: 20px;
}

.preview-header {
    margin-bottom: 30px;
}

.couple-avatar {
    font-size: 60px;
    margin-bottom: 15px;
}

.preview-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.preview-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f8, #ffe8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* ===== Demos Section ===== */
.demos {
    padding: 100px 0;
    background: var(--white);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.demo-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.demo-preview {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.demo-content {
    text-align: center;
    z-index: 1;
}

.theme-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.demo-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.romantic-theme {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.night-theme {
    background: linear-gradient(135deg, #0c1445, #1a237e);
}

.minimal-theme {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.minimal-theme h4 {
    color: var(--text-dark);
    text-shadow: none;
}

.vintage-theme {
    background: linear-gradient(135deg, #d4a574, #8b7355);
}

.gradient-theme {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
}

.demo-link {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-light);
}

/* ===== New Premium Pricing Card with Heart Decorations ===== */
.pricing-simple {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Dekoratif kalp animasyonları */
.pricing-simple::before,
.pricing-simple::after {
    content: '💕';
    position: absolute;
    font-size: 1.5rem;
    animation: floatHeart 3s ease-in-out infinite;
    opacity: 0.6;
}

.pricing-simple::before {
    top: -20px;
    left: 15%;
    animation-delay: 0s;
}

.pricing-simple::after {
    top: -15px;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 1;
    }
}

.pricing-main-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 248, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 60px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow:
        0 25px 60px rgba(255, 107, 157, 0.15),
        0 10px 30px rgba(196, 69, 105, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 25px 25px 0 0;
}

.pricing-main-card::after {
    content: '💖';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.pricing-main-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 35px 80px rgba(255, 107, 157, 0.2),
        0 15px 40px rgba(196, 69, 105, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.price-big {
    margin-bottom: 35px;
    position: relative;
}

.price-from {
    display: inline-block;
    color: #999;
    font-size: 1.2rem;
    text-decoration: line-through;
    text-decoration-color: #ff6b9d;
    text-decoration-thickness: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
    position: relative;
}

.price-amount {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: none;
    letter-spacing: -2px;
    position: relative;
}

.price-note {
    display: inline-block;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 10px;
    padding: 6px 16px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

.included-features {
    text-align: left;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 25px;
    background: rgba(255, 107, 157, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.included-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: transform 0.2s ease;
}

.included-features li:hover {
    transform: translateX(5px);
}

.included-features li i {
    color: var(--primary);
    font-size: 0.9rem;
    background: rgba(255, 107, 157, 0.15);
    padding: 6px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-extras {
    background: linear-gradient(135deg, #fff5f8, #ffe8f0);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
}

.premium-extras h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.premium-extras p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Button Enhancement in Pricing Card */
.pricing-main-card .btn-primary {
    background: var(--gradient-primary);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pricing-main-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.pricing-main-card .btn-primary i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    35% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.1);
    }
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* ===== Footer ===== */
.footer {
    padding: 50px 0;
    background: #0d0d1a;
    text-align: center;
}

.footer-content {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-separator {
        display: none;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10vh 5vw 2vh;
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        overflow: visible;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .steps {
        flex-direction: column;
    }

    .step-connector {
        width: 3px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }

    /* Pricing Card Mobile Responsive */
    .pricing-main-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .pricing-main-card::after {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    .pricing-simple::before,
    .pricing-simple::after {
        display: none;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .included-features {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }

    .included-features li {
        font-size: 0.9rem;
    }

    .included-features li i {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.3rem);
        line-height: 1.1;
        margin-bottom: 10px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* Aesthetic Improvement */
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 10px;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    .hero-stats {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        /* Aesthetic Improvement */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        /* Aesthetic Improvement */
    }

    .hero-cta .btn:active {
        transform: scale(0.98);
        /* Aesthetic Improvement */
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .phone-mockup {
        width: min(60%, 200px);
        /* Reduced size as requested */
        height: auto;
        aspect-ratio: 1 / 2;
        margin: 0 auto;
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
        animation: floatPhone 6s ease-in-out infinite;
        transform: none;
    }

    @keyframes floatPhone {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    /* Pricing card mobile */
    .pricing-main-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .included-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .premium-extras h4 {
        font-size: 1rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    /* Steps */
    .step {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    /* CTA section */
    .cta h2 {
        font-size: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero {
        /* Fluid padding adjustment for xs devices */
        padding: 60px 20px 30px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .nav-logo span:last-child {
        display: none;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}