:root {
    --primary: #FF8600;
    --primary-hover: #e67a00;
    --secondary: #202020;
    --secondary-light: #2c2c2c;
    --bg-light: #FDFDFD;
    --text-dark: #222222;
    --text-white: #ffffff;
    --text-gray: #4a4a4a;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--secondary);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.75rem;
}

.section-padding {
    padding: 80px 0;
}

/* Header */
.header {
    background-color: transparent;
    color: var(--text-white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background-color: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-strong);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.justify-center {
    justify-content: center;
}

.logo strong {
    font-weight: 800;
}

/* Buttons */
.section-cta {
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 6px 15px rgba(255, 134, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 134, 0, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(243, 133, 5, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-subdesc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Sections Common */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.section-header .icon {
    font-size: 2.8rem;
    color: var(--primary);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
}

.text-center .section-header p {
    margin: 0 auto;
}

.bg-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Grids */
.cards-grid {
    display: grid;
    gap: 30px;
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Cards */
.card {
    background-color: var(--text-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.card-dark {
    background-color: var(--secondary-light);
    color: var(--text-white);
}

.card.card-dark h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.highlight-border {
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.highlight-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: inline-block;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.highlight-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Responsibilities Checklist */
.checklist-grid {
    display: grid;
    gap: 20px;
    list-style: none;
}

.checklist-grid li {
    background-color: var(--text-white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.checklist-grid li:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary);
}

.checklist-grid .check {
    color: var(--text-white);
    background-color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Lists */
.list-styled {
    list-style: none;
}

.list-styled li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.list-styled li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Testimonials / Social Proof */
.testimonial-card {
    background-color: var(--text-white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-strong);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: -15px;
}

.quote-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.author .avatar i {
    font-size: 3rem;
    color: var(--text-gray);
}

.author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
}

.author span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}


/* Process Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(243, 133, 5, 0.4);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.step-connector {
    flex-grow: 1;
    height: 3px;
    background-color: #ddd;
    margin-top: 30px;
    position: relative;
    min-width: 50px;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary);
    color: var(--text-white);
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #111;
    color: var(--text-gray);
    padding: 40px 0;
}


/* Responsive */
@media (max-width: 992px) {
    .cols-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .hero {
        background-position: center left;
    }

    .hero-overlay {
        background: rgba(26, 26, 26, 0.85);
    }
}

@media (max-width: 768px) {
    .header .btn-outline {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .btn-large {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Animations Make Fluid */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}