/* IBDPal Coming Soon Page Styles - Professional Typography Hierarchy */

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a; /* ibdPrimaryText */
    background: linear-gradient(135deg, #9933cc 0%, #cc6600 100%); /* ibdPrimary to ibdSecondary gradient */
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 0.5rem 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Tab Navigation */
.tab-navigation {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px 15px 0 0;
    padding: 0;
    margin: 0.5rem 0 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.tab-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    min-width: 100px;
    position: relative;
}

.tab-button:hover {
    background: rgba(153, 51, 204, 0.1);
    color: #9933cc;
}

.tab-button.active {
    background: rgba(153, 51, 204, 0.15);
    color: #9933cc;
    border-bottom-color: #9933cc;
    font-weight: 600;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #9933cc;
}

/* Tab Content */
.tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 15px 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}

/* Main Content */
.main-content {
    background: #fafafa; /* ibdBackground */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 0.5rem 0;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #f2f2f2 100%); /* ibdBackground gradient */
}

.hero-catchphrase {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(153, 51, 204, 0.1);
}

.hero-tagline {
    font-size: 2rem;
    color: #1a1a1a; /* ibdPrimaryText */
    margin: 1.5rem auto 2rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 800px;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(153, 51, 204, 0.08) 0%, rgba(153, 51, 204, 0.03) 100%);
    border-left: 5px solid #9933cc; /* ibdPrimary */
    border-right: 5px solid #9933cc; /* ibdPrimary */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(153, 51, 204, 0.1);
    text-align: center;
}

.highlight-text {
    color: #9933cc; /* ibdPrimary */
    font-weight: 700;
    font-size: 1.05em;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 0.3rem;
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #1a1a1a; /* ibdPrimaryText */
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 0.9rem;
    color: #666666; /* ibdSecondaryText */
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    background: #9933cc; /* ibdPrimary */
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(153, 51, 204, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.app-store-badge:hover {
    transform: translateY(-2px);
    background: #7a2a9f; /* Darker ibdPrimary */
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.badge-store {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Download Section with QR Code */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.qr-code-wrapper {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 51, 204, 0.2);
}

.qr-code-image {
    width: 180px;
    height: 180px;
    display: block;
    border-radius: 8px;
}

.qr-code-placeholder {
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    border-radius: 8px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.qr-code-placeholder .qr-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

.qr-code-text {
    font-size: 0.9rem;
    color: #666666; /* ibdSecondaryText */
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Responsive QR Code */
@media (min-width: 768px) {
    .download-section {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .qr-code-image {
        width: 200px;
        height: 200px;
    }
    
    .qr-code-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Features Section */
.features-section {
    padding: 1.5rem 0;
    background: transparent;
}

.features-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.feature-card {
    text-align: left;
    padding: 1.2rem;
    border-radius: 8px;
    background: white; /* ibdCardBackground */
    border: 1px solid #e0e0e0; /* ibdSurfaceBackground */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(153, 51, 204, 0.15);
    border-color: #9933cc; /* ibdPrimary */
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #666666; /* ibdSecondaryText */
    line-height: 1.4;
    font-size: 0.9rem;
}

/* How it Works Section */
.how-it-works-section {
    padding: 1.5rem 0;
    background: transparent;
}

.how-it-works-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    font-weight: 600;
}

.how-it-works-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666; /* ibdSecondaryText */
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.phases-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white; /* ibdCardBackground */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(153, 51, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #9933cc; /* ibdPrimary */
}

.phase-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(153, 51, 204, 0.15);
}

.phase-item:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid #9933cc; /* ibdPrimary */
}

.phase-item:nth-child(even):hover {
    transform: translateX(-5px);
}

.phase-image-container {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.phase-item:hover .phase-image {
    transform: scale(1.05);
}

.phase-number {
    font-size: 3rem;
    font-weight: 700;
    color: #9933cc; /* ibdPrimary */
    line-height: 1;
    min-width: 80px;
    text-align: center;
    opacity: 0.3;
    flex-shrink: 0;
}

.phase-content {
    flex: 1;
}

.phase-title {
    font-size: 1.3rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.phase-description {
    color: #666666; /* ibdSecondaryText */
    line-height: 1.6;
    font-size: 1rem;
}

/* App Preview Section */
.app-preview-section {
    padding: 1.5rem 0;
    background: transparent;
}

.app-preview-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.app-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.preview-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white; /* ibdCardBackground */
    box-shadow: 0 5px 15px rgba(153, 51, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(153, 51, 204, 0.2);
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.preview-card h4 {
    font-size: 1.2rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-card p {
    color: #666666; /* ibdSecondaryText */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Signup Section */
.signup-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #9933cc 0%, #cc6600 100%); /* ibdPrimary to ibdSecondary */
    text-align: center;
    color: white;
}

.signup-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.signup-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a; /* ibdPrimaryText */
}

.input-group input::placeholder {
    color: #999999; /* ibdDisabledText */
}

.input-group button {
    padding: 1rem 2rem;
    background: #4dcc33; /* ibdSuccess */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.input-group button:hover {
    background: #3ba326; /* Darker ibdSuccess */
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #fafafa; /* ibdBackground */
    text-align: center;
}

.contact-section h3 {
    font-size: 2.5rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.contact-info a {
    color: #9933cc; /* ibdPrimary */
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #7a2a9f; /* Darker ibdPrimary */
    text-decoration: underline;
}

/* Footer - Clean Professional Design */
.footer {
    background: #1a1a1a; /* ibdPrimaryText */
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content strong {
    color: #9933cc; /* ibdPrimary */
    font-weight: 600;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #9933cc; /* ibdPrimary */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #9933cc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: #9933cc; /* ibdPrimary */
    color: white;
    text-decoration: none;
}

/* Legal Pages Styling */
.legal-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 3rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    text-align: center;
}

.legal-section h2 {
    font-size: 2rem;
    color: #9933cc; /* ibdPrimary */
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #9933cc;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #1a1a1a; /* ibdPrimaryText */
    margin: 1.5rem 0 0.5rem 0;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: #1a1a1a; /* ibdPrimaryText */
    margin: 1rem 0 0.5rem 0;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.last-updated {
    font-style: italic;
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Support Page Styling */
.support-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-section h1 {
    font-size: 3rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    text-align: center;
}

.support-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.support-card h3 {
    font-size: 1.5rem;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
}

.support-card h4 {
    font-size: 1.2rem;
    color: #1a1a1a; /* ibdPrimaryText */
    margin: 1.5rem 0 0.5rem 0;
}

.support-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.support-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.support-card li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: #1a1a1a; /* ibdPrimaryText */
}

.contact-methods p {
    margin-bottom: 0.5rem;
}

.contact-methods a {
    color: #9933cc; /* ibdPrimary */
    text-decoration: none;
    font-weight: 500;
}

.contact-methods a:hover {
    text-decoration: underline;
}

.faq-section h4 {
    color: #9933cc; /* ibdPrimary */
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

.troubleshooting-section h4 {
    color: #9933cc; /* ibdPrimary */
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

.features-help h4 {
    color: #9933cc; /* ibdPrimary */
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-container {
        padding: 0 15px;
    }
    
    .tab-container {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .tab-button {
        padding: 1rem 1.5rem;
        min-width: auto;
        text-align: center;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
    
    .tab-content {
        border-radius: 0 0 15px 15px;
        padding: 2rem 1rem;
        min-height: 500px;
    }
    
    .tab-navigation {
        border-radius: 15px;
        margin: 1rem 0 0 0;
    }
    
    .logo h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-catchphrase {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        margin: 1.2rem auto 1.5rem;
        padding: 1.2rem 1.5rem;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-item {
        flex-direction: column !important;
        border-left: 4px solid #9933cc !important;
        border-right: none !important;
        align-items: center !important;
    }
    
    .phase-item:nth-child(even) {
        flex-direction: column !important;
        border-left: 4px solid #9933cc !important;
        border-right: none !important;
    }
    
    .phase-item:hover {
        transform: translateY(-3px) !important;
    }
    
    .phase-image-container {
        width: 100%;
        max-width: 250px;
        height: 200px;
        margin-bottom: 1rem;
        order: -1;
    }
    
    .phase-number {
        font-size: 2.5rem;
        min-width: 60px;
        margin-bottom: 0.5rem;
    }
    
    .phase-title {
        font-size: 1.2rem;
    }
    
    .phase-description {
        font-size: 0.95rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group button {
        width: 100%;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content p {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .legal-section h1,
    .support-section h1 {
        font-size: 2.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .features-section,
    .app-preview-section,
    .signup-section,
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-catchphrase {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin: 1rem auto 1.2rem;
        padding: 1rem 1.2rem;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-top: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
}

/* Benefits Section Styles */
.benefits-section {
    background: transparent;
    border-radius: 8px;
    padding: 1.5rem 0;
    margin: 1rem 0;
    box-shadow: none;
}

.benefits-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #9933cc;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(153, 51, 204, 0.2);
    border-color: #9933cc;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9933cc;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .benefits-section h3 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}

/* Screenshots Gallery Styles */
.screenshots-section {
    background: transparent;
    border-radius: 8px;
    padding: 1.5rem 0;
    margin: 1rem 0;
    box-shadow: none;
}

.screenshots-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #9933cc;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.screenshot-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(153, 51, 204, 0.2);
    border-color: #9933cc;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9933cc;
    margin-bottom: 0.3rem;
}

.screenshot-caption p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Responsive Screenshots */
@media (max-width: 768px) {
    .screenshots-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .screenshots-section h3 {
        font-size: 2rem;
    }
    
    .screenshots-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshot-item {
        padding: 1rem;
    }
    
    .screenshot-caption h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .screenshots-section {
        padding: 1.5rem 0.5rem;
    }
    
    .screenshots-section h3 {
        font-size: 1.8rem;
    }
    
    .screenshot-item {
        padding: 0.8rem;
    }
}

/* Blogs Section */
.blogs-section {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.blogs-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    text-align: center;
    margin-bottom: 2rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a; /* ibdPrimaryText */
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-date {
    font-size: 0.9rem;
    color: #666666; /* ibdSecondaryText */
    font-style: italic;
    margin: 0;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.blog-content p {
    margin-bottom: 1.2rem;
}

.blog-punchline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #9933cc;
    line-height: 1.6;
}

.blog-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.blog-list li::marker {
    color: #9933cc; /* ibdPrimary */
}

.blog-qr-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.blog-qr-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 0.5rem;
}

.blog-qr-subtext {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-qr-footer {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 1rem;
    font-style: italic;
}

.blog-qr-code-wrapper {
    display: inline-block;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-qr-image {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 8px;
}

.blog-closing {
    font-size: 1.1rem;
    margin-top: 2rem;
    font-style: italic;
    color: #666666;
}

.blog-about-developer {
    background: #f8f9fa;
    border-left: 4px solid #9933cc; /* ibdPrimary */
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.blog-about-developer h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    margin-bottom: 1rem;
    margin-top: 0;
}

.blog-about-developer p {
    margin-bottom: 0;
    color: #1a1a1a;
    line-height: 1.7;
}

.blog-signature {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9933cc; /* ibdPrimary */
    margin-top: 1.5rem;
    text-align: center;
}

.blog-footer {
    border-top: 2px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #1a1a1a;
}

.share-link {
    color: #9933cc; /* ibdPrimary */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #9933cc;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-link:hover {
    background: #9933cc;
    color: white;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.6rem;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-qr-image {
        width: 180px;
        height: 180px;
    }
    
    .blog-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
