/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    min-height: 100vh;
    overflow-x: hidden;
    word-wrap: break-word;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* ============================================
   BACKGROUND GRADIENT
   ============================================ */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-attachment: scroll;
    background-image: 
        linear-gradient(170deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    pointer-events: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.site-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.section {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section .inner {
    text-align: center;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.hero-headline {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.section-title.underline {
    display: inline-block;
}

.section-title.underline::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #FAB97D, #8A9EE3);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FAB97D 0%, #f5a623 100%);
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35), 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.5), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

.cta-group {
    margin-top: 2rem;
}

.cta-sub {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
    border-radius: 2px;
}

.hero-image {
    margin-bottom: 2.5rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTION CARDS (light content areas)
   ============================================ */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-card-light {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-list {
    text-align: left;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.step-item:hover {
    transform: translateY(-1px);
}

.step-number {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, #FAB97D, #f5a623);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.step-content strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.step-content p {
    color: #374151;
    line-height: 1.7;
}

.section-image {
    margin-top: 2.5rem;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FIT SECTION
   ============================================ */
.fit-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.two-col {
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.col-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.col-content {
    flex: 1;
}

.col-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.col-content .section-title.underline::after {
    margin: 0.75rem 0 0;
}

.check-list {
    list-style: none;
    margin-bottom: 1.75rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: #1f2937;
    line-height: 1.6;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: -1px;
    color: #38a169;
    font-weight: 800;
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-weight: 500;
}

.note-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* ============================================
   EXAMPLE AUTOMATION
   ============================================ */
.example-section .section-title {
    margin-bottom: 1.75rem;
}

.example-list {
    text-align: left;
    max-width: 38rem;
    margin: 0 auto 2.5rem;
}

.example-list p {
    padding: 0.65rem 0;
    font-size: 1.05rem;
    color: #1f2937;
    line-height: 1.6;
}

.example-list p:first-child {
    padding-top: 0;
}

.example-list p:last-child {
    padding-bottom: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 1.75rem;
    flex: 1;
    min-width: 16rem;
    max-width: 22rem;
    border: 1px solid #e5e7eb;
}

.pricing-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.pricing-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.65;
}

.pricing-note {
    margin-bottom: 0.6rem;
    color: #374151;
    font-size: 1rem;
}

.ongoing-support {
    margin-top: 2.5rem;
    text-align: left;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.ongoing-support .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.ongoing-support .check-list li {
    margin-bottom: 0.6rem;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.before-after {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.ba-column {
    flex: 1;
    min-width: 14rem;
    max-width: 18rem;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid;
}

.ba-column.before {
    background: #fef2f2;
    border-color: #fecaca;
}

.ba-column.after {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.ba-column h3 {
    font-size: 1.15rem;
    margin-bottom: 1.15rem;
    color: #0f172a;
}

.ba-list {
    list-style: none;
}

.ba-list li {
    padding: 0.55rem 0;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.5;
    font-weight: 500;
}

.result-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.result-sub {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    text-align: center;
}

.about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 48rem;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    color: #1f2937;
    line-height: 1.85;
}

/* ============================================
   FORM MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 52rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: #f3f4f6;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    transition: all 0.2s;
    z-index: 1;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #1f2937;
    background: #e5e7eb;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---- Form wrapper (inside modal) ---- */
.form-wrapper {
    padding: 2.75rem 3rem 2.25rem;
}

.form-wrapper h1 {
    color: #0f172a;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.form-wrapper > p {
    color: #4b5563;
    margin-bottom: 2.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.helper-text {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: #6b7280;
    font-style: italic;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.92rem;
}

.required {
    color: #e53e3e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.15rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.25s ease;
    background-color: #ffffff;
    font-family: inherit;
    letter-spacing: -0.01em;
    color: #1f2937;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FAB97D;
    box-shadow: 0 0 0 3px rgba(250, 185, 125, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

#submitBtn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #FAB97D 0%, #f5a623 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

#submitBtn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.5);
}

#submitBtn:disabled {
    background: linear-gradient(135deg, #a0aec0 0%, #cbd5e0 100%);
    color: #ffffff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ---- Form messages ---- */
.message {
    margin-top: 1.25rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 0.92rem;
    animation: fadeIn 0.3s ease;
    display: block;
}

.message.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #38a169;
    font-size: 1rem;
    padding: 1.25rem;
    text-align: left;
}

.message.success strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 4px solid #e53e3e;
}

.message.loading {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: #9ca3af;
}

/* ---- Success modal ---- */
#success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#success-modal {
    background: #ffffff;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#success-modal h3 {
    color: #166534;
    margin-bottom: 1rem;
}

#success-modal p {
    color: #1f2937;
    margin: 0.5rem 0;
}

#success-modal button {
    background-color: #38a169;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
}

#success-modal button:hover {
    background-color: #2f855a;
}

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

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.admin-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.logout-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.logout-btn:hover {
    background: #b91c1c;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FAB97D;
    margin: 0.5rem 0;
}

.stat-label {
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
}

.submissions-table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.submissions-table th {
    background-color: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submissions-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937;
}

.submissions-table tr:last-child td {
    border-bottom: none;
}

.submissions-table tr:hover {
    background-color: #f9fafb;
}

.workflow-cell {
    max-width: 400px;
    min-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #FAB97D;
    text-decoration: underline;
    font-weight: 500;
}

.date-cell {
    white-space: nowrap;
    color: #4b5563;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #4b5563;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: #374151;
    font-weight: 500;
}

.page-btn.active {
    background: #FAB97D;
    border-color: #FAB97D;
    color: #1a1a2e;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.admin-modal .modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.admin-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.admin-modal .modal-title {
    margin: 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.admin-modal .close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.admin-modal .modal-body {
    padding: 1.5rem;
}

.full-workflow {
    white-space: pre-wrap;
    line-height: 1.6;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    max-height: 60vh;
    overflow-y: auto;
    color: #1f2937;
}

.login-container {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.login-container h1 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-container p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #ffffff;
    font-family: inherit;
    color: #1f2937;
}

.login-form input:focus {
    outline: none;
    border-color: #FAB97D;
    box-shadow: 0 0 0 3px rgba(250, 185, 125, 0.15);
}

.login-btn {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, #FAB97D 0%, #f5a623 100%);
    color: #1a1a2e;
    border: none;
    padding: 1.1rem 1.8rem;
    font-size: 1.05rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.login-error {
    color: #dc2626;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.85rem;
    }

    .hero-sub {
        font-size: 1.05rem;
    }

    .section {
        padding: 3.5rem 1.25rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Fit section: stack columns */
    .two-col {
        flex-direction: column;
    }

    /* Steps: stack number + content */
    .step-item {
        gap: 1rem;
        padding: 1.25rem;
    }

    .step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    /* Pricing cards */
    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        max-width: none;
    }

    /* Before/After */
    .before-after {
        flex-direction: column;
        align-items: center;
    }

    .ba-column {
        max-width: none;
        width: 100%;
    }

    /* Modal form */
    .form-wrapper {
        padding: 2rem 1.5rem 1.5rem;
    }

    .form-wrapper h1 {
        font-size: 1.4rem;
    }

    /* Admin */
    .admin-container {
        padding: 1rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .submissions-table {
        font-size: 0.85rem;
    }

    .content-card,
    .content-card-light,
    .fit-content,
    .pricing-content,
    .ba-section,
    .about-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 3rem;
    }

    .hero-headline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .form-wrapper h1 {
        font-size: 1.3rem;
    }

    .content-card,
    .content-card-light,
    .fit-content,
    .pricing-content,
    .ba-section,
    .about-card {
        padding: 1.5rem;
    }
}
