/* ----------------------------------------------------
   MARKETING SITE — GLOBAL PAGE LAYOUT
---------------------------------------------------- */

.contact-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 40px;
}

/* ----------------------------------------------------
   CONTACT FORM — DARK THEME
---------------------------------------------------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius);
    color: var(--text) !important;
    font-size: 1rem;
    transition: border var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ----------------------------------------------------
   SUBMIT BUTTON — QUATALYZE BLUE
---------------------------------------------------- */

.contact-submit {
    background: var(--accent) !important;
    color: #000 !important;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.contact-submit:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

/* ----------------------------------------------------
   PRICING PAGE — RESTORE HORIZONTAL CARD LAYOUT
---------------------------------------------------- */

.pricing-grid,
.pricing-cards {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: nowrap;
}

.pricing-card {
    flex: 1 1 0;
    max-width: 320px;
}

/* ----------------------------------------------------
   PRICING PAGE — RESTORE HORIZONTAL CARD LAYOUT
---------------------------------------------------- */

.pricing-grid,
.pricing-cards {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: nowrap;
}

.pricing-card {
    flex: 1 1 0;
    max-width: 320px;
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */

.hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #0d1117 0%, #111827 100%);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hero-cta:hover {
    background: var(--accent-hover);
}


/* ---------------------------------------------
   VALUE PROPOSITION SECTION
--------------------------------------------- */

.value-section {
    padding: 80px 20px;
}

.value-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.value-card:hover {
    border-color: #374151;
    background-color: #1a2234;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.value-card p {
    color: #d1d5db;
    font-size: 0.95rem;
}


/* ---------------------------------------------
   HOW IT WORKS SECTION
--------------------------------------------- */

.how-section {
    padding: 80px 20px;
    background: #0f1622;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.how-step {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
}

.how-number {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    line-height: 32px;
    margin-bottom: 12px;
}


/* ---------------------------------------------
   CTA STRIP
--------------------------------------------- */

.cta-strip {
    padding: 80px 20px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    text-align: center;
    color: #ffffff;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #1e3a8a;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.85;
}
