
/* FETCHSKI COMING SOON PAGE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* MARK: Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-top: calc(180px + 20px);
    padding-bottom: calc(240px + 20px);
    min-height: 0;
}

/* MARK: Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 32px;
    text-align: center;
    background-color: rgba(48, 48, 48, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05);
}

/* MARK: Main Content Card */
.content-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}
.content {
    padding: 48px 48px;
    text-align: center;
}
.coming-soon-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}
.subtitle {
    color: #D1D5DB;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.3;
}
.description {
    color: #F3F4F6;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* MARK: Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}
.feature {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}
.feature:hover .feature-title {
    color: #FFFFFF;
}
.feature:hover .feature-description {
    color: #E5E7EB;
}
.feature:hover .feature-icon {
    color: #FFFFFF;
    transform: scale(1.1);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #4F46E5;
    transition: all 0.3s ease;
}
.feature-title {
    color: #1F2937;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.feature-description {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* MARK: Spot Spotter AI Section */
.ai-section {
    margin: 64px 0;
    padding: 64px 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #4F46E5 100%);
}
.ai-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.ai-badge i {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}
.ai-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #10B981, #4F46E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ai-subtitle {
    color: #10B981;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}
.ai-description {
    color: #E5E7EB;
    font-size: 18px;
    line-height: 1.6;
}
/* MARK: AI Visual Demo */
.ai-visual {
    position: relative;
}
.ai-demo-container {
    position: relative;
    height: 300px;
}
.ai-photo-stack {
    position: relative;
    height: 100%;
}
.demo-photo {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 12px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.demo-photo-1 {
    top: 20px;
    left: 20px;
    animation: photoFloat1 4s ease-in-out infinite;
}
.demo-photo-2 {
    top: 80px;
    right: 40px;
    animation: photoFloat2 4s ease-in-out infinite 1s;
}
.demo-photo-3 {
    bottom: 20px;
    left: 60px;
    animation: photoFloat3 4s ease-in-out infinite 2s;
}
@keyframes photoFloat1 {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-8deg); }
}
@keyframes photoFloat2 {
    0%, 100% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}
@keyframes photoFloat3 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(-5deg); }
}
.photo-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(16, 185, 129, 0.9);
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
}
.ai-processing-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(79, 70, 229, 0.9);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.ai-processing-indicator i {
    animation: pulse 2s ease-in-out infinite;
}

/* MARK: AI Features Grid */
.ai-features {
    margin-bottom: 64px;
}
.ai-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}
.ai-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.ai-feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}
.ai-feature-icon {
    margin-bottom: 20px;
}
.ai-feature-icon i {
    font-size: 48px;
    color: #10B981;
}
.ai-feature-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ai-feature-description {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 1.5;
}

/* MARK: AI Workflow Section */
.ai-workflow {
    margin-bottom: 64px;
}
.ai-workflow-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.workflow-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    backdrop-filter: blur(10px);
}
.workflow-step:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}
.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px auto;
}
.step-content h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.step-content p {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 1.4;
}
.workflow-arrow {
    color: #10B981;
    font-size: 24px;
    flex-shrink: 0;
}

/* MARK: AI Stats Section */
.ai-stats {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-item:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 10px;
}
.stat-number {
    color: #10B981;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}
.stat-label {
    color: #E5E7EB;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* MARK: Integrations Section */
.integrations-section {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.integrations-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}
.integrations-description {
    color: #E5E7EB;
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.integration-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.integration-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
}
.integration-item:hover .integration-name {
    color: #FFFFFF;
}
.integration-item:hover .integration-description {
    color: #E5E7EB;
}
.integration-item:hover .integration-logo i {
    color: #FFFFFF;
    transform: scale(1.1);
}
.integration-logo {
    margin-bottom: 20px;
}
.integration-logo i {
    font-size: 48px;
    color: #4F46E5;
    transition: all 0.3s ease;
}
.integration-name {
    color: #1F2937;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.integration-description {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* MARK: Custom Integrations Section */
.custom-integrations {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.custom-integrations-content {
    position: relative;
    z-index: 2;
}
.custom-integrations-icon {
    font-size: 64px;
    color: #FFFFFF;
    margin-bottom: 24px;
    animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}
.custom-integrations-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.custom-integrations-description {
    color: #E5E7EB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.custom-integrations-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
/* MARK: Enhanced capsule hover effects */
.integration-feature {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.integration-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* MARK: Stripe Payments Section */
.payments-section {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.payments-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}
.payments-description {
    color: #E5E7EB;
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.payment-features-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: center;
}
.payment-feature-main {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.stripe-icon {
    font-size: 64px;
    color: #22C55E;
    margin-bottom: 24px;
    animation: pulse 3s ease-in-out infinite;
}
.stripe-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.stripe-subtitle {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.5;
}
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.payment-method {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.payment-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #22C55E 0%, #059669 100%);
    color: #FFFFFF;
}
.payment-method i {
    font-size: 24px;
    color: #22C55E;
    transition: color 0.3s ease;
}
.payment-method:hover i {
    color: #FFFFFF;
}
.payment-method span {
    font-weight: 600;
    font-size: 14px;
    color: #1F2937;
    transition: color 0.3s ease;
}
.payment-method:hover span {
    color: #FFFFFF;
}
.payment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.payment-benefit {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.payment-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #22C55E 0%, #059669 100%);
    color: #FFFFFF;
}
.payment-benefit:hover span {
    color: #FFFFFF;
}
.payment-benefit i {
    font-size: 40px;
    color: #22C55E;
    margin-bottom: 16px;
}
.payment-benefit:hover i {
    color: #FFFFFF;
}
.payment-benefit h4 {
    color: #1F2937;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.payment-benefit:hover h4{
    color: #FFFFFF;
}
.payment-benefit p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}
.payment-benefit:hover p {
    color: #FFFFFF;
}

/* MARK: AWS Hosting Section */
.hosting-section {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.hosting-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}
.hosting-description {
    color: #E5E7EB;
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hosting-content {
    display: grid;
    gap: 32px;
}
.aws-showcase {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(35, 47, 62, 0.1) 100%);
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.aws-logo-section {
    text-align: center;
    margin-bottom: 32px;
}
.aws-icon {
    font-size: 64px;
    color: #FF9933;
    margin-bottom: 24px;
    animation: pulse 3s ease-in-out infinite;
}
.aws-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.aws-subtitle {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.5;
}
.hosting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.hosting-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.hosting-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.hosting-feature i {
    font-size: 32px;
    color: #FF9933;
    margin-top: 4px;
}
.hosting-feature-content h4 {
    color: #1F2937;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.hosting-feature-content p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}
.hosting-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 138, 0, 0.3);
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B35 100%);
    border-color: rgba(255, 138, 0, 0.6);
}
.hosting-feature:hover i {
    color: #FFFFFF !important;
    transform: scale(1.1);
}
.hosting-feature:hover .hosting-feature-content h4 {
    color: #FFFFFF;
}

.hosting-feature:hover .hosting-feature-content p {
    color: #FFF5E6;
}
.hosting-feature i {
    transition: all 0.3s ease;
}
.hosting-feature-content h4 {
    transition: color 0.3s ease;
}
.hosting-feature-content p {
    transition: color 0.3s ease;
}
.hosting-feature:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF8A00, #FF6B35);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.2;
    filter: blur(6px);
}
.hosting-guarantee {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.guarantee-icon {
    font-size: 64px;
    color: #FBBF24;
    margin-bottom: 24px;
}
.guarantee-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.guarantee-description {
    color: #E5E7EB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 30px;
}
.guarantee-feature {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.guarantee-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* MARK: CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.cta-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta-description {
    color: #E5E7EB;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}
.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.email-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    font-family: inherit;
    transition: all 0.3s ease;
}
.email-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    background: #FFFFFF;
}
.notify-button {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border: 1.5px solid #E2E8F0;
    color: #FFFFFF;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    font-family: inherit;
    letter-spacing: 0.025em;
}
.notify-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #5B52F0 0%, #8B5CF6 100%);
}
.notify-button:hover .bell-icon {
    animation: shake 0.6s ease-in-out;
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* MARK: Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(48, 48, 48, 0.85);
    border-radius: 10px 10px 0 0;
    padding: 24px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-top: 120px;
}
.footer-logo {
    width: 60px;
    margin-bottom: 8px;
}
.footer p {
    margin: 4px 0;
}
.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* MARK: Media Query 768 */
@media (max-width: 768px) {
    .header {
        padding: 24px 24px;
    }
    .logo {
        width: 150px;
    }
    .content {
        padding: 32px 32px;
    }
    .main-content {
        padding-top: calc(160px + 16px);
        padding-bottom: calc(220px + 16px);
        padding-left: 16px;
        padding-right: 16px;
    }
    .ai-section {
        padding: 32px 32px;
    }
    .ai-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ai-title {
        font-size: 36px;
    }
    .ai-subtitle {
        font-size: 20px;
    }
    .ai-feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }  
    .ai-feature-item {
        padding: 16px 16px;
    }
    .ai-feature-icon i {
        font-size: 28px;
    }
    .ai-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .ai-stats {
        padding: 10px;
    }
    .workflow-steps {
        flex-direction: column;
    }
    .workflow-arrow {
        transform: rotate(90deg);
    }
    .ai-demo-container {
        height: 250px;
    }
    .stat-item {
        padding: 5px;
    }
    .demo-photo {
        width: 100px;
        height: 100px;
    }
    .coming-soon-title {
        font-size: 36px;
    }
    .subtitle {
        font-size: 20px;
    }
    .description {
        font-size: 16px;
    }
    .email-form {
        max-width: 100%;
    }
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .integrations-title {
        font-size: 28px;
    }
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .integrations-section {
        margin: 48px 0;
        padding: 32px 0;
    }
    .custom-integrations {
        padding: 32px 24px;
    }
    .custom-integrations-features {
        flex-direction: column;
        align-items: center;
    }
    .payment-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    .hosting-section {
        padding: 10px;
    }
    .aws-showcase {
        padding: 15px;
    }
    .aws-icon  {
        font-size: 32px;
    }
    .hosting-features {
        grid-template-columns: 1fr;
    }
    .hosting-guarantee {
        padding: 10px;
    }
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
}

/* MARK: Media Query 480 */
@media (max-width: 480px) {
    .header {
        padding: 18px 18px;
    }
    .header {
        padding: 18px 18px;
    }
    .content {
        padding: 28px 28px;
    }
    .main-content {
        padding-top: calc(140px + 16px);
        padding-bottom: calc(200px + 16px);
    }
    .coming-soon-title {
        font-size: 28px;
    }
    .subtitle {
        font-size: 18px;
    }
    .ai-section {
        padding: 24px 24px;
    }
    .ai-feature-item {
        padding: 16px 16px;
    }
    .footer {
        padding: 16px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .custom-integrations {
        padding: 24px 20px;
    }
    .custom-integrations-title {
        font-size: 24px;
    }
    .custom-integrations-icon {
        font-size: 48px;
    }
}

/* MARK: Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    .content-card {
        background-color: rgba(0, 0, 0, 0.4);
        color: #F9FAFB;
    }
    .coming-soon-title {
        color: #FFFFFF;
    }
    .description {
        color: #F3F4F6;
    }
    .feature {
        background: linear-gradient(135deg, rgba(55, 65, 81, 0.95) 0%, rgba(75, 85, 99, 0.95) 100%);
        border-color: rgba(75, 85, 99, 0.5);
    }
    .feature-title {
        color: #F9FAFB;
    }
    .feature-description {
        color: #D1D5DB;
    }
    .integration-item {
        background: linear-gradient(135deg, rgba(55, 65, 81, 0.95) 0%, rgba(75, 85, 99, 0.95) 100%);
        border-color: rgba(75, 85, 99, 0.5);
    }
    .integration-name {
        color: #F9FAFB;
    }
    .integration-description {
        color: #D1D5DB;
    }
    .email-input {
        background: rgba(55, 65, 81, 0.9);
        border-color: rgba(107, 114, 128, 0.5);
        color: #F9FAFB;
    }
    .email-input:focus {
        background: rgba(55, 65, 81, 1);
    }
}

/* MARK: Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content-card {
    animation: fadeInUp 0.8s ease-out;
}
.feature {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}
/* Dynamic animation delays for unlimited cards */
.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }
.feature:nth-child(7) { animation-delay: 0.7s; }
.feature:nth-child(8) { animation-delay: 0.8s; }
.feature:nth-child(9) { animation-delay: 0.9s; }
.feature:nth-child(10) { animation-delay: 1.0s; }
.feature:nth-child(11) { animation-delay: 1.1s; }
.feature:nth-child(12) { animation-delay: 1.2s; }
.feature:nth-child(13) { animation-delay: 1.3s; }
