/* ============================
   GLOBAL RESET & VARIABLES
   ============================ */

:root {
    --primary: #1A4D8F;
    --primary-dark: #0F2F5C;
    --accent: #3CC7A6;
    --gradient: linear-gradient(135deg, #1A4D8F 0%, #4FA3D1 50%, #3CC7A6 100%);
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
}

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

body {
    font-family: Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================
   LAYOUT
   ============================ */

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================
   NAVIGATION
   ============================ */

header {
    background: var(--white);
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-right ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-right a {
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.2s ease;
}

.nav-right a:hover {
    color: var(--primary);
}

/* ============================
   HERO SECTION (Stripe + EPINation)
   ============================ */

.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0;
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 0 40px;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #E5E7EB;
}

.btn-outline {
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    transition: 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ============================
   SECTIONS
   ============================ */

.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--white);
}

.section h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ============================
   CARDS
   ============================ */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ============================
   FOOTER
   ============================ */

footer {
    background: #111827;
    color: #D1D5DB;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}
/* ============================
   APPLY NOW PAGE UPGRADE
   ============================ */

.apply-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.apply-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.apply-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 1100px;
    margin: 40px auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #D1D5DB;
    font-size: 15px;
}

.form-field textarea {
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 8px;
}
/* ============================
   PROGRESS BAR
   ============================ */

.progress-bar {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-weight: 700;
    border-bottom: 4px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.progress-step.active {
    border-bottom: 4px solid #ffffff;
    color: #ffffff;
}
/* ============================
   ABOUT PAGE UPGRADE
   ============================ */

.about-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.about-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-top: 30px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}
/* ============================
   SERVICES PAGE UPGRADE
   ============================ */

.services-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.services-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-card {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    transition: 0.2s ease;
}

.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.services-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.services-card p {
    font-size: 16px;
    color: var(--text-light);
}

.checklist li {
    margin-bottom: 6px;
    color: var(--text-dark);
}
/* ============================
   POS SYSTEMS PAGE UPGRADE
   ============================ */

.pos-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.pos-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pos-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.pos-card {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    transition: 0.2s ease;
}

.pos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.pos-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.pos-card p {
    font-size: 16px;
    color: var(--text-light);
}
/* ============================
   INDUSTRIES PAGE UPGRADE
   ============================ */

.industries-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.industries-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.industries-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.industry-card {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    transition: 0.2s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.industry-card p {
    font-size: 16px;
    color: var(--text-light);
}
/* ============================
   CONTACT PAGE UPGRADE
   ============================ */

.contact-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.contact-hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    margin-top: 30px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

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