/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #f4f4f4;
    background-color: #0f0f0f; /* Dark background like Kasidie */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(15, 15, 15, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37; /* Gold color for premium feel */
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #d4af37;
}

.cta-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #b8860b;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #d4af37;
    max-width: 800px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero .cta-btn {
    font-size: 1.3rem;
    padding: 18px 45px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d4af37;
    text-transform: uppercase;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.feature-card svg {
    width: 50px;
    height: 50px;
    fill: #d4af37;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    color: #d4af37;
    font-weight: bold;
    opacity: 0.3;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    font-style: italic;
    border-left: 5px solid #d4af37;
}

.story-card p {
    margin-bottom: 15px;
}

.story-author {
    font-weight: bold;
    color: #d4af37;
    font-style: normal;
}

/* Cities Section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.city-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    text-align: center;
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.pricing-card.popular {
    border-color: #d4af37;
    position: relative;
}

.pricing-card.popular::after {
    content: 'Recomendado';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    color: #d4af37;
    margin: 20px 0;
}

/* Content Area for SEO (Long text) */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #d4af37;
}

.seo-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* Ready to Begin Section */
.ready-to-begin {
    background: #0a0a0a;
    padding: 100px 0;
    text-align: center;
}

.ready-to-begin h2 {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ready-to-begin p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ready-to-begin .cta-btn {
    display: inline-block;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 8px;
    background: #d4af37;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
}

.blog-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.blog-content p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-more {
    color: #d4af37;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Explore Section Optimized */
.explore-section {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.explore-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-content {
    flex: 1;
}

.explore-image {
    flex: 1;
    position: relative;
}

.explore-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.explore-badge {
    display: inline-block;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.explore-section h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.explore-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    text-align: left;
}

.explore-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    fill: #d4af37;
}

.highlight-text {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.explore-seo-note {
    background: #151515;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 4px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.explore-seo-note p {
    margin-bottom: 0 !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.explore-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
}

@media (max-width: 992px) {
    .explore-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .explore-section h2, .explore-section p {
        text-align: center;
    }
    .explore-highlights {
        justify-items: center;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .explore-highlights {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: 250px;
        margin: 0 auto 40px;
    }
    .explore-section h2 {
        font-size: 2.2rem;
    }
}

/* SEO Content V2 Section */
.seo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.seo-intro h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.seo-intro p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

.seo-content-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-block {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    height: 100%;
}

.seo-block:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.seo-block h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.seo-icon {
    width: 28px;
    height: 28px;
    fill: #d4af37;
    flex-shrink: 0;
}

.seo-block p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.seo-full-width {
    grid-column: 1 / -1;
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #333;
    margin-top: 20px;
}

.seo-full-width h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .seo-intro h2 {
        font-size: 2.5rem;
    }
    .seo-content-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .seo-intro h2 {
        font-size: 2rem;
    }
    .seo-block {
        padding: 30px 20px;
    }
    .seo-full-width {
        padding: 30px 20px;
    }
}

/* Memes Section - Kasidie Testimonial Style */
.memes-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background grid effect */
.memes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.meme-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.meme-heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.quote-icon-circle {
    width: 60px;
    height: 60px;
    background: #ff00ff; /* Pink/Magenta from Kasidie */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.quote-icon-circle svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.meme-section-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.meme-card-v2 {
    display: flex;
    background: #151515;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.meme-card-v2:hover {
    border-color: #ff00ff;
    transform: scale(1.02);
}

.meme-img-side {
    flex: 0 0 350px;
}

.meme-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meme-text-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meme-text-side p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.meme-location-info {
    color: #ff00ff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .meme-card-v2 {
        flex-direction: column;
    }
    .meme-img-side {
        flex: 0 0 250px;
    }
    .meme-section-title {
        font-size: 2rem;
    }
}

/* Memes Page Exclusive Styles */
.meme-page-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
}

.meme-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.meme-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.meme-hero-content h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.meme-hero-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
}

.meme-intro-section {
    padding: 80px 0;
    background: #111;
}

.meme-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.meme-intro-container h2 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.meme-intro-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.meme-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.meme-category-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
}

.meme-category-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.meme-category-header {
    background: #222;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.meme-category-header h3 {
    color: #d4af37;
    font-size: 1.6rem;
}

.meme-category-body {
    padding: 30px;
}

.meme-category-body h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.meme-category-body p {
    color: #bbb;
    margin-bottom: 20px;
}

.meme-category-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.meme-table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.meme-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.meme-comparison-table th, .meme-comparison-table td {
    padding: 20px;
    text-align: left;
    border: 1px solid #333;
}

.meme-comparison-table th {
    background: #d4af37;
    color: #000;
    font-weight: 800;
}

.meme-comparison-table tr:nth-child(even) {
    background: #222;
}

.meme-list {
    list-style: none;
    padding: 0;
}

.meme-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    display: flex;
    gap: 15px;
    align-items: center;
}

.meme-list li::before {
    content: '➔';
    color: #d4af37;
    font-weight: bold;
}

.meme-guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.meme-step {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    color: #000;
    font-size: 1.5rem;
}

.meme-step h3 {
    color: #fff;
    margin-bottom: 15px;
}

.meme-step p {
    color: #ccc;
}

@media (max-width: 768px) {
    .meme-page-hero h1 {
        font-size: 2.2rem;
    }
    .meme-category-grid {
        grid-template-columns: 1fr;
    }
}

/* Concepts Section Styles */
.concepts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.concept-card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex; 
    flex-direction: column;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.concept-header {
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.concept-card.daddy .concept-header {
    background: linear-gradient(135deg, #b8860b, #8b4513);
}

.concept-card.baby .concept-header {
    background: linear-gradient(135deg, #682955, #4a1e3d);
}

.concept-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.concept-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.concept-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.concept-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.concept-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.concept-body > p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
    font-size: 1.05rem;
}

.concept-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.concept-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-num {
    background: #f8f1e7;
    color: #b8860b;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.concept-features strong {
    display: block;
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 4px;
}

.concept-features p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .concepts-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 30px;
    }
    
    .concept-header {
        padding: 40px 20px;
    }
}

/* App Page Specific Styles */
.app-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.app-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-hero-text {
    flex: 1;
}

.app-hero-image {
    flex: 1;
    text-align: center;
}

.app-hero-image img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
}

.app-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.app-hero h2 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 500;
}

.app-table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.app-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    color: #ccc;
    min-width: 600px;
}

.app-comparison-table th, .app-comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.app-comparison-table th {
    background: #222;
    color: #d4af37;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.app-comparison-table tr:last-child td {
    border-bottom: none;
}

.app-comparison-table td strong {
    color: #fff;
}

.app-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.app-feature-item {
    background: #151515;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    transition: 0.3s;
}

.app-feature-item:hover {
    transform: translateX(10px);
    background: #1a1a1a;
}

.app-feature-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.app-feature-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-steps-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.app-step-card-v2 {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.app-step-card-v2:hover {
    border-color: #d4af37;
    background: #161616;
}

.app-step-num-v2 {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.app-step-card-v2 h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.app-step-card-v2 p {
    color: #999;
    font-size: 0.9rem;
}

.app-download-cta {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    padding: 80px 20px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    color: #000;
}

.app-download-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.app-download-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-cta .cta-btn-v2 {
    background: #000;
    color: #d4af37;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.app-download-cta .cta-btn-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.app-stories-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.app-story-item-v2 {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #333;
}

.app-story-item-v2 p {
    font-style: italic;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
}

.app-story-author {
    color: #d4af37;
    font-weight: 700;
    display: block;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 25px;
}

.faq-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .app-stories-v2 {
        grid-template-columns: 1fr;
    }
    .app-download-cta h2 {
        font-size: 2rem;
    }
    .app-hero h1 {
        font-size: 2.5rem;
    }
    .app-hero-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Sugar Daddy Santiago Page Scoped Styles */
.santiago-page-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
    color: #fff;
}

.santiago-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.santiago-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.santiago-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.santiago-hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #d4af37;
}

.santiago-section {
    padding: 80px 0;
}

.santiago-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.santiago-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.santiago-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.santiago-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.santiago-image-text {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
}

.santiago-image-text.reverse {
    flex-direction: row-reverse;
}

.santiago-image-text img {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.santiago-image-text .text-content {
    width: 50%;
}

.santiago-locations-list {
    list-style: none;
    padding: 0;
}

.santiago-locations-list li {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 15px;
}

.santiago-locations-list li::before {
    content: '✦';
    color: #d4af37;
}

.santiago-cta-box {
    background: linear-gradient(45deg, #1a1a1a, #000);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #d4af37;
    margin: 80px 0;
}

.santiago-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.santiago-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.santiago-cta-box .cta-btn {
    font-size: 1.2rem;
    padding: 18px 45px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .santiago-hero-content h1 {
        font-size: 2.2rem;
    }
    .santiago-hero-content h2 {
        font-size: 1.3rem;
    }
    .santiago-image-text {
        flex-direction: column !important;
    }
    .santiago-image-text img, 
    .santiago-image-text .text-content {
        width: 100%;
    }
    .santiago-cta-box {
        padding: 40px 20px;
    }
}

