/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-primary: #13A699;
    --teal-dark: #0F9688;
    --teal-light: #E6F7F5;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-gray: #4A5568;
    --border-gray: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--teal-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--teal-dark);
}

/* ==========================================
   LAYOUT & CONTAINERS
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--black);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--teal-light);
    color: var(--teal-primary);
}

.nav-menu li a.cta-button {
    background-color: var(--teal-primary);
    color: var(--white);
}

.nav-menu li a.cta-button:hover {
    background-color: var(--teal-dark);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--black);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--teal-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 166, 153, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--teal-primary);
    border: 2px solid var(--teal-primary);
}

.btn-secondary:hover {
    background-color: var(--teal-primary);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
    text-align: center;
    padding: 5rem 0 4rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* ==========================================
   SERVICES PREVIEW (HOME)
   ========================================== */
.services-preview {
    background-color: var(--white);
    padding: 5rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--teal-light);
    border-radius: 50%;
    color: var(--teal-primary);
}

.service-icon svg {
    stroke: var(--teal-primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-gray);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon svg {
    stroke: var(--white);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ==========================================
   PROJECTS PREVIEW
   ========================================== */
.projects-preview {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.projects-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.project-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-subtitle {
    color: var(--teal-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.tech-tag {
    background-color: var(--teal-light);
    color: var(--teal-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-link {
    color: var(--teal-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    text-decoration: underline;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose {
    padding: 5rem 0;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--teal-light);
    border-radius: 50%;
    color: var(--teal-primary);
}

.why-icon svg {
    stroke: var(--teal-primary);
}

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-gray);
}

/* ==========================================
   CTA SECTIONS
   ========================================== */
.cta-section,
.services-cta,
.portfolio-cta,
.about-cta,
.process-cta,
.careers-cta {
    background-color: var(--teal-primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2,
.services-cta h2,
.portfolio-cta h2,
.about-cta h2,
.process-cta h2,
.careers-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p,
.services-cta p,
.portfolio-cta p,
.about-cta p,
.process-cta p,
.careers-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn,
.services-cta .btn,
.portfolio-cta .btn,
.about-cta .btn,
.process-cta .btn,
.careers-cta .btn {
    background-color: var(--white);
    color: var(--teal-primary);
}

.cta-section .btn:hover,
.services-cta .btn:hover,
.portfolio-cta .btn:hover,
.about-cta .btn:hover,
.process-cta .btn:hover,
.careers-cta .btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==========================================
   PRICING PAGE - FIXED VERSION
   ========================================== */
.pricing-intro {
    padding: 3rem 0;
    text-align: center;
}

.intro-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.intro-box h2 {
    margin-bottom: 1rem;
}

.pricing-tiers {
    padding: 4rem 0;
}

.pricing-tiers .container {
    max-width: 1200px;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--teal-primary);
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(19, 166, 153, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-gray);
    border-bottom: 2px solid var(--border-gray);
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-primary);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.pricing-timeline {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features,
.pricing-ideal {
    margin: 1.5rem 0;
    flex: 1;
}

.pricing-features h4,
.pricing-ideal h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-ideal p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Add-ons Section */
.pricing-addons {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.pricing-addons h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.addon-icon {
    margin-bottom: 1rem;
    color: var(--teal-primary);
}

.addon-icon svg {
    stroke: var(--teal-primary);
}

.addon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.addon-price {
    color: var(--teal-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.addon-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* What's Included */
.pricing-included {
    padding: 4rem 0;
}

.pricing-included h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.included-icon {
    font-size: 1.5rem;
    color: var(--teal-primary);
    font-weight: 700;
}

.included-item p {
    margin: 0;
    color: var(--text-gray);
}

/* FAQ Section */
.pricing-faq {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Pricing CTA */
.pricing-cta {
    background-color: var(--teal-primary);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.pricing-cta h2 {
    margin-bottom: 1rem;
}

.pricing-cta p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.pricing-cta .btn {
    background-color: var(--white);
    color: var(--teal-primary);
}

.pricing-cta .btn:hover {
    background-color: var(--bg-light);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    padding-left: 6rem;
}

.service-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 5rem;
    font-weight: 900;
    color: var(--teal-light);
    line-height: 1;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--teal-primary);
    font-weight: 700;
}

.tech-stack {
    margin-top: 2rem;
}

.tech-badge {
    display: inline-block;
    background-color: var(--teal-light);
    color: var(--teal-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

/* ==========================================
   PORTFOLIO PAGE
   ========================================== */
.portfolio-content {
    padding: 4rem 0;
}

.case-study {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.case-study-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.case-study-header h2 {
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.case-study-section {
    margin-bottom: 2.5rem;
}

.case-study-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.case-study-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.case-study-results {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.result-box {
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-primary);
    margin-bottom: 0.5rem;
}

.result-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal-primary);
    font-weight: 700;
}

.case-study-tech {
    margin-top: 2rem;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-content {
    padding: 4rem 0;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.difference-grid,
.approach-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.difference-card,
.approach-step,
.industry-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.difference-card h3,
.approach-step h3,
.industry-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.difference-card p,
.approach-step p,
.industry-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.approach-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--teal-primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ==========================================
   PROCESS PAGE
   ========================================== */
.process-overview {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-primary);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.process-steps {
    padding: 4rem 0;
}

.process-step {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    position: relative;
}

.step-visual {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: var(--teal-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-icon {
    color: var(--teal-primary);
}

.step-icon svg {
    stroke: var(--teal-primary);
}

.step-content {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.step-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.step-duration {
    color: var(--teal-primary);
    font-weight: 600;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-col ul {
    list-style: none;
    padding: 0;
}

.detail-col ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}
.detail-col ul li::before {
content: "→";
position: absolute;
left: 0;
color: var(--teal-primary);
font-weight: 700;
}
.step-outcome {
background-color: var(--white);
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--teal-primary);
margin-top: 2rem;
}
.step-outcome strong {
color: var(--teal-primary);
}
.highlight-step .step-content {
background-color: var(--teal-light);
border: 2px solid var(--teal-primary);
}
.step-fast-track {
background-color: var(--white);
padding: 1.5rem;
border-radius: 8px;
margin-top: 1.5rem;
}
.step-fast-track h4 {
color: var(--teal-primary);
margin-bottom: 0.5rem;
}
.step-fast-track p {
color: var(--text-gray);
margin-bottom: 0;
}
.process-difference {
background-color: var(--bg-light);
padding: 4rem 0;
}
.process-difference h2 {
text-align: center;
margin-bottom: 3rem;
}
/* ==========================================
CAREERS PAGE
========================================== */
.careers-intro {
padding: 4rem 0;
}
.intro-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.intro-content h2 {
margin-bottom: 1.5rem;
}
.intro-content p {
color: var(--text-gray);
line-height: 1.8;
margin-bottom: 2.5rem;
}
.perks-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.perk-card {
background-color: var(--bg-light);
padding: 2rem;
border-radius: 12px;
text-align: center;
}
.perk-icon {
width: 70px;
height: 70px;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--teal-light);
border-radius: 50%;
color: var(--teal-primary);
}
.perk-icon svg {
stroke: var(--teal-primary);
}
.perk-card h3 {
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.perk-card p {
color: var(--text-gray);
font-size: 0.95rem;
margin-bottom: 0;
}
.careers-positions {
padding: 4rem 0;
background-color: var(--bg-light);
}
.careers-positions h2 {
text-align: center;
margin-bottom: 1rem;
}
.position-card {
max-width: 900px;
margin: 0 auto 3rem;
background-color: var(--white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.position-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1.5rem;
gap: 1rem;
flex-wrap: wrap;
}
.position-header h3 {
font-size: 1.75rem;
margin-bottom: 0.5rem;
}
.position-meta {
color: var(--text-gray);
font-size: 0.95rem;
}
.position-badge {
background-color: var(--teal-primary);
color: var(--white);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
}
.position-description {
color: var(--text-gray);
line-height: 1.8;
margin-bottom: 2rem;
}
.position-details {
margin-bottom: 2rem;
}
.detail-section {
margin-bottom: 2rem;
}
.detail-section h4 {
margin-bottom: 1rem;
font-size: 1.1rem;
}
.detail-section ul {
list-style: none;
padding: 0;
}
.detail-section ul li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--text-gray);
}
.detail-section ul li::before {
content: "•";
position: absolute;
left: 0;
color: var(--teal-primary);
font-weight: 700;
font-size: 1.25rem;
}
.careers-general {
padding: 4rem 0;
}
.general-application {
max-width: 700px;
margin: 0 auto;
text-align: center;
background-color: var(--bg-light);
padding: 3rem;
border-radius: 12px;
}
.general-application h2 {
margin-bottom: 1rem;
}
.general-application p {
color: var(--text-gray);
margin-bottom: 2rem;
}
.careers-application-tips {
background-color: var(--bg-light);
padding: 4rem 0;
}
.careers-application-tips h2 {
text-align: center;
margin-bottom: 1rem;
}
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.tip-card {
background-color: var(--white);
padding: 2rem;
border-radius: 12px;
}
.tip-card h3 {
margin-bottom: 1rem;
font-size: 1.25rem;
}
.tip-card p {
color: var(--text-gray);
margin-bottom: 0;
}
.careers-process {
padding: 4rem 0;
}
.careers-process h2 {
text-align: center;
margin-bottom: 3rem;
}
.hiring-steps {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
.hiring-step {
flex: 1;
min-width: 200px;
text-align: center;
padding: 2rem;
background-color: var(--bg-light);
border-radius: 12px;
}
.hiring-step .step-num {
display: inline-block;
width: 50px;
height: 50px;
background-color: var(--teal-primary);
color: var(--white);
border-radius: 50%;
line-height: 50px;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.hiring-step h3 {
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.hiring-step p {
color: var(--text-gray);
font-size: 0.95rem;
margin-bottom: 0;
}
/* ==========================================
CONTACT PAGE
========================================== */
.contact-section {
padding: 4rem 0;
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 1200px;
margin: 0 auto;
}
.contact-form-container h2,
.contact-info-container h2 {
margin-bottom: 2rem;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 0.875rem;
border: 2px solid var(--border-gray);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--teal-primary);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.btn-submit {
background-color: var(--teal-primary);
color: var(--white);
padding: 1rem;
border: none;
border-radius: 8px;
font-size: 1.125rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-submit:hover {
background-color: var(--teal-dark);
transform: translateY(-2px);
}
.btn-submit:disabled {
background-color: var(--border-gray);
cursor: not-allowed;
transform: none;
}
.form-message {
padding: 1rem;
border-radius: 8px;
text-align: center;
font-weight: 600;
display: none;
}
.form-message.success {
background-color: #D4EDDA;
color: #155724;
}
.form-message.error {
background-color: #F8D7DA;
color: #721C24;
}
.contact-info-container {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-info-card {
background-color: var(--bg-light);
padding: 2rem;
border-radius: 12px;
}
.contact-info-icon {
width: 60px;
height: 60px;
background-color: var(--teal-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
.contact-info-icon svg {
stroke: var(--teal-primary);
}
.contact-info-card h3 {
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.contact-info-card p {
color: var(--text-gray);
margin-bottom: 0;
}
.contact-info-card a {
color: var(--teal-primary);
font-weight: 600;
}
.contact-info-card a:hover {
text-decoration: underline;
}
/* ==========================================
FOOTER
========================================== */
.footer {
background-color: var(--black);
color: var(--white);
padding: 4rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-col h4 {
margin-bottom: 1.5rem;
font-size: 1.25rem;
}
.footer-col p {
color: rgba(255,255,255,0.8);
margin-bottom: 1rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 0.75rem;
}
.footer-col ul li a {
color: rgba(255,255,255,0.8);
transition: color 0.3s ease;
}
.footer-col ul li a:hover {
color: var(--white);
}
.newsletter-signup {
margin-top: 2rem;
}
.newsletter-signup h5 {
margin-bottom: 0.5rem;
font-size: 1.125rem;
}
.newsletter-desc {
color: rgba(255,255,255,0.7);
font-size: 0.95rem;
margin-bottom: 1rem;
}
.newsletter-form {
display: flex;
gap: 0.5rem;
}
.newsletter-form input {
flex: 1;
padding: 0.75rem;
border: 2px solid rgba(255,255,255,0.2);
background-color: rgba(255,255,255,0.1);
color: var(--white);
border-radius: 6px;
font-size: 0.95rem;
}
.newsletter-form input::placeholder {
color: rgba(255,255,255,0.5);
}
.newsletter-form input:focus {
outline: none;
border-color: var(--teal-primary);
}
.btn-newsletter {
padding: 0.75rem 1.5rem;
background-color: var(--teal-primary);
color: var(--white);
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-newsletter:hover {
background-color: var(--teal-dark);
}
.newsletter-message {
margin-top: 0.75rem;
padding: 0.75rem;
border-radius: 6px;
font-size: 0.95rem;
display: none;
}
.newsletter-message.success {
background-color: rgba(76, 175, 80, 0.2);
color: #4CAF50;
}
.newsletter-message.error {
background-color: rgba(244, 67, 54, 0.2);
color: #F44336;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.7);
}
.footer-bottom p {
margin-bottom: 0.5rem;
}
/* ==========================================
WHATSAPP FLOAT BUTTON
========================================== */
.whatsapp-float {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 60px;
height: 60px;
background-color: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
transition: all 0.3s ease;
z-index: 1000;
color: var(--white);
}
.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
background-color: #128C7E;
}
.whatsapp-float svg {
fill: var(--white);
}
/* ==========================================
ANIMATIONS
========================================== */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* ==========================================
RESPONSIVE DESIGN
========================================== */
@media (max-width: 968px) {
h1 {
font-size: 2.25rem;
}
h2 {
    font-size: 2rem;
}

.container {
    padding: 0 1.5rem;
}

.nav-menu {
    gap: 1rem;
}

.nav-menu li a {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
}

.services-grid,
.projects-grid,
.why-grid {
    grid-template-columns: 1fr;
}

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

.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.process-step {
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-card {
    padding-left: 0;
    margin-top: 4rem;
}

.service-number {
    position: relative;
    margin-bottom: 1rem;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
}
}
@media (max-width: 640px) {
h1 {
font-size: 1.875rem;
}
h2 {
    font-size: 1.75rem;
}

.nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.hero {
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 1rem;
}

.stat-value {
    font-size: 2.5rem;
}

.page-header {
    padding: 4rem 0 3rem;
}

.page-header h1 {
    font-size: 2rem;
}

section {
    padding: 3rem 0;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.pricing-card {
    min-height: auto;
}

.newsletter-form {
    flex-direction: column;
}

.overview-stats {
    flex-direction: column;
    gap: 2rem;
}

.hiring-steps {
    flex-direction: column;
}
}
/* ==========================================
PRINT STYLES
========================================== */
@media print {
.navbar,
.whatsapp-float,
.footer,
.cta-section,
.btn {
display: none;
}
body {
    font-size: 12pt;
}

h1 {
    font-size: 24pt;
}

h2 {
    font-size: 20pt;
}

h3 {
    font-size: 16pt;
}
}

/* ==========================================
   PRICING PATHS - TWO OPTIONS SECTION
   ========================================== */

.pricing-paths {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 80px 20px;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.path-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.solutions-path {
    border-color: #13A699;
}

.solutions-path:hover {
    border-color: #0F9688;
    box-shadow: 0 20px 60px rgba(19, 166, 153, 0.25);
}

.custom-path {
    border-color: #3b82f6;
}

.custom-path:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.path-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: linear-gradient(135deg, #13A699 0%, #0F9688 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(19, 166, 153, 0.3);
}

.custom-path .path-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.path-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 20px 0 10px 0;
}

.path-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 35px;
}

.path-price {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 12px;
    margin-bottom: 35px;
}

.price-from {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.path-price .price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #13A699;
    line-height: 1;
    margin-bottom: 10px;
}

.custom-path .path-price .price-amount {
    color: #3b82f6;
}

.price-timeline {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.path-features {
    margin-bottom: 30px;
}

.path-features h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.path-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.path-features ul li {
    padding: 12px 0;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.path-features ul li:last-child {
    border-bottom: none;
}

.path-industries {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.path-industries strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.industry-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.industry-tags span {
    background: white;
    color: #13A699;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #13A699;
}

.path-cta-text {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
}

.path-cta-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.path-cta-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.path-card .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 30px;
}

.path-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 15px;
    font-style: italic;
}

/* ==========================================
   PRICING COMPARISON TABLE
   ========================================== */

.pricing-comparison {
    padding: 80px 20px;
    background: white;
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-row:not(.comparison-header):nth-child(even) {
    background: #f8fafc;
}

.comparison-feature {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.comparison-col {
    text-align: center;
    color: #475569;
    font-size: 0.95rem;
}

.comparison-header .comparison-col {
    color: white;
}

/* Responsive Design for Pricing Paths */
@media (max-width: 968px) {
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .path-card {
        padding: 40px 30px;
    }

    .path-card h2 {
        font-size: 1.9rem;
    }

    .path-price .price-amount {
        font-size: 2.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .comparison-feature {
        font-weight: 700;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
    }
}

@media (max-width: 640px) {
    .pricing-paths {
        padding: 60px 20px;
    }

    .path-badge {
        left: 20px;
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .path-card {
        padding: 35px 25px;
    }

    .path-card h2 {
        font-size: 1.7rem;
    }

    .path-price {
        padding: 25px 20px;
    }

    .path-price .price-amount {
        font-size: 2.2rem;
    }

    .industry-tags {
        justify-content: center;
    }

    .pricing-comparison {
        padding: 60px 20px;
    }

    .pricing-comparison h2 {
        font-size: 2rem;
    }

    .comparison-row {
        padding: 15px 20px;
    }
}

/* Custom Pricing Section Helpers */
.section-title-center {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.section-subtitle-center {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 968px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SOLUTIONS PAGE - INDUSTRY SPECIFIC
   ========================================== */

/* Solutions Intro */
.solutions-intro {
    background: #f8fafc;
    padding: 70px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e293b;
}

.intro-content p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Solutions Grid Section */
.solutions-grid-section {
    padding: 0;
    background: white;
}

.solution-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.solution-card:last-child {
    border-bottom: none;
}

/* Solution Header */
.solution-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e2e8f0;
}

.solution-icon {
    background: #13A699;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon svg {
    color: white;
}

.solution-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1e293b;
}

.solution-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
}

/* Challenge Section */
.challenge-section {
    margin-bottom: 50px;
}

.challenge-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.challenge-list li {
    background: #fff7ed;
    padding: 18px 18px 18px 50px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    position: relative;
    border-left: 3px solid #fb923c;
}

.challenge-list li::before {
    content: "⚠";
    position: absolute;
    left: 18px;
    top: 18px;
    color: #fb923c;
    font-size: 1.2rem;
}

/* Solution Approach */
.solution-approach {
    margin-bottom: 50px;
}

.solution-approach h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.approach-item {
    background: #f8fafc;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #13A699;
}

.approach-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.approach-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Results Preview */
.results-preview {
    background: linear-gradient(135deg, #E6F7F5 0%, #e0e7ff 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.results-preview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 35px 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.outcome-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #13A699;
    margin: 0 0 10px 0;
    line-height: 1;
}

.outcome-label {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

.solution-content .btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 14px 32px;
    font-size: 1rem;
}

/* Cross-Industry Features */
.cross-industry-features {
    background: #f8fafc;
    padding: 80px 0;
}

.cross-industry-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #13A699;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #E6F7F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    color: #13A699;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.feature-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Solutions Process */
.solutions-process {
    padding: 80px 0;
    background: white;
}

.solutions-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #13A699;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 22px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.timeline-item p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, #13A699 0%, #0F9688 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.solutions-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.solutions-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-cta .btn {
    background: white;
    color: #13A699;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1.05rem;
}

.solutions-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.cta-note {
    font-size: 0.95rem;
    margin-top: 22px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        width: 100%;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background-color: var(--teal-light);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-left: 3px solid var(--teal-primary);
        background-color: var(--bg-light);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .solution-header {
        flex-direction: column;
        text-align: center;
    }

    .solution-header h2 {
        font-size: 1.8rem;
    }

    .challenge-list,
    .approach-grid,
    .outcomes-grid,
    .features-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .intro-content h2,
    .cross-industry-features h2,
    .solutions-process h2,
    .solutions-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 60px 20px 40px;
    }

    .solutions-intro,
    .cross-industry-features,
    .solutions-process,
    .solutions-cta {
        padding: 60px 20px;
    }

    .solution-card {
        padding: 60px 20px;
    }
}


/* ==========================================
   DROPDOWN MENU - FINAL FIX
   ========================================== */

/* Make dropdown work - high specificity */
.navbar .nav-menu .dropdown {
    position: relative !important;
}

.navbar .nav-menu .dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    min-width: 240px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    margin-top: 10px !important;
    z-index: 9999 !important;
    list-style: none !important;
    border: 1px solid #e2e8f0 !important;
}

.navbar .nav-menu .dropdown:hover .dropdown-menu {
    display: block !important;
}

.navbar .nav-menu .dropdown-menu li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.navbar .nav-menu .dropdown-menu li::before {
    display: none !important;
    content: none !important;
}

.navbar .nav-menu .dropdown-menu a {
    display: block !important;
    padding: 12px 20px !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
}

.navbar .nav-menu .dropdown-menu a:hover {
    background: #f1f5f9 !important;
    color: #3b82f6 !important;
}

.navbar .nav-menu .dropdown > a::after {
    content: " ▼" !important;
    font-size: 0.7rem !important;
    margin-left: 5px !important;
    opacity: 0.7 !important;
}

/* ==========================================
   HOMEPAGE - QUICK SOLUTIONS SECTION
   ========================================== */

.quick-solutions {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 50px;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.solutions-intro-text {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0;
}

.solutions-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.solution-choice-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.solution-choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.teal-card {
    border-color: #13A699;
}

.teal-card:hover {
    box-shadow: 0 15px 40px rgba(19, 166, 153, 0.2);
}

.blue-card {
    border-color: #3b82f6;
}

.blue-card:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.choice-badge {
    position: absolute;
    top: -12px;
    left: 35px;
    background: linear-gradient(135deg, #13A699 0%, #0F9688 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(19, 166, 153, 0.3);
}

.blue-card .choice-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.solution-choice-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 15px 0 8px 0;
}

.choice-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.choice-price {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #13A699;
    line-height: 1;
}

.blue-card .price-value {
    color: #3b82f6;
}

.choice-features {
    margin: 25px 0;
}

.feature-check {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.feature-check:last-child {
    border-bottom: none;
}

.solution-choice-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* Industry Quick Links */
.industry-quicklinks {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quicklinks-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quicklink-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 8px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.quicklink-item:hover {
    background: #13A699;
    color: white;
    border-color: #13A699;
    transform: translateY(-3px);
}

.quicklink-item svg {
    flex-shrink: 0;
}

.quicklink-item:hover svg {
    stroke: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .solutions-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quicklinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .quick-solutions {
        padding: 60px 20px;
    }

    .solutions-header h2 {
        font-size: 1.8rem;
    }

    .solution-choice-card {
        padding: 35px 25px;
    }

    .solution-choice-card h3 {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .quicklinks-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LIVE DEMOS PAGE
   ========================================== */

.demos-intro {
    background: #f8fafc;
    padding: 60px 20px;
    text-align: center;
}

.demos-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.demos-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.demos-intro p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.demo-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.demo-feature-item svg {
    color: #13A699;
    flex-shrink: 0;
}

/* Demos Grid */
.demos-grid {
    padding: 80px 20px;
    background: white;
}

.demos-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #13A699;
}

.demo-card.featured-demo {
    border-color: #13A699;
    box-shadow: 0 8px 25px rgba(19, 166, 153, 0.15);
}

.demo-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.demo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E6F7F5 0%, #d1fae5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.demo-icon svg {
    color: #13A699;
}

.demo-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.demo-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.demo-highlights {
    margin: 25px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.demo-highlights h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.demo-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-highlights ul li {
    padding: 8px 0 8px 25px;
    color: #475569;
    font-size: 0.95rem;
    position: relative;
}

.demo-highlights ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #13A699;
    font-weight: 700;
}

.demo-perfect-for {
    margin: 20px 0;
    padding: 15px;
    background: #fff7ed;
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #475569;
}

.demo-perfect-for strong {
    color: #1e293b;
}

.demo-card .btn {
    width: 100%;
    margin-top: 25px;
}

.demo-card .btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.demo-card .btn:disabled:hover {
    background: #cbd5e1;
    transform: none;
}

.demo-contact-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #13A699;
    font-weight: 600;
    font-size: 0.95rem;
}

.demo-contact-link:hover {
    text-decoration: underline;
}

/* Real Projects Section */
.real-projects {
    background: #f8fafc;
    padding: 80px 20px;
}

.real-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 50px;
}

.projects-list {
    max-width: 900px;
    margin: 0 auto 60px;
}

.project-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.project-item:hover {
    border-color: #13A699;
    box-shadow: 0 4px 15px rgba(19, 166, 153, 0.1);
}

.project-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #13A699;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.custom-project-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.custom-project-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.custom-project-cta p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .demos-grid .container {
        grid-template-columns: 1fr;
    }

    .demo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .demos-intro h2,
    .real-projects h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .demos-intro {
        padding: 50px 20px;
    }

    .demos-grid {
        padding: 60px 20px;
    }

    .demo-card {
        padding: 30px 25px;
    }

    .demo-card h3 {
        font-size: 1.4rem;
    }

    .demo-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .real-projects {
        padding: 60px 20px;
    }

    .project-item {
        flex-direction: column;
        gap: 15px;
    }

    .custom-project-cta {
        padding: 30px 20px;
    }

    .custom-project-cta h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   MOBILE NAVIGATION FIX - ENHANCED
   ========================================== */

@media (max-width: 768px) {
    /* Force mobile toggle to show */
    .mobile-nav-toggle {
        display: block !important;
        position: relative;
        z-index: 1001;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        width: 44px;
        height: 44px;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--black);
        margin: 5px auto;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile menu - slides in from right */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background-color: var(--white) !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 80px 0 30px !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu li a {
        display: block !important;
        padding: 1rem 2rem !important;
        border-radius: 0 !important;
        width: 100% !important;
        text-align: left !important;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background-color: var(--teal-light) !important;
    }

    /* Dropdown in mobile */
    .nav-menu .dropdown {
        position: relative !important;
    }

    .nav-menu .dropdown > a::after {
        content: " ▼" !important;
        float: right !important;
        transition: transform 0.3s ease !important;
    }

    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg) !important;
    }

    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        border-left: 3px solid var(--teal-primary) !important;
        background-color: var(--bg-light) !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        padding: 0 !important;
    }

    .dropdown-menu li a {
        padding: 0.75rem 2rem 0.75rem 3rem !important;
        font-size: 0.9rem !important;
    }

    .dropdown-menu li a:hover {
        background-color: var(--teal-light) !important;
        padding-left: 3.5rem !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }

    /* Dark overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Desktop - ensure everything works normally */
@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .dropdown-menu {
        display: none !important;
        position: absolute !important;
    }

    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
}