/* ==========================================
   DESIGN SYSTEM & VARIABLES
========================================== */
:root {
    --primary-color: #0b1528;      /* Deep Space Navy */
    --primary-light: #16253d;      /* Slate Blue Navy */
    --accent-color: #ff6f00;       /* Premium Orange */
    --accent-hover: #e66400;       /* Deep Accent Orange */
    --accent-glow: rgba(255, 111, 0, 0.45);
    --secondary-color: #00f2fe;    /* Electric Cyan */
    --success-color: #10b981;      /* Emerald Green */
    --danger-color: #ef4444;       /* Ruby Red */
    --bg-light: #f8fafc;           /* Snow Gray */
    --bg-white: #ffffff;           /* Clean White */
    --text-dark: #0f172a;          /* Slate Dark */
    --text-muted: #64748b;         /* Slate Muted */
    --text-light: #f1f5f9;         /* Cool Light Gray */
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   GLOBAL RESET & FONTS
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    font-size: 15px;
    color: #000;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-hover);
}

/* ==========================================
   COMMON COMPONENT STYLES
========================================== */
.section-padding {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--accent-color);
}

.section-header p {
    font-size: 16px;
    line-height: 1.8;
}

/* Premium Buttons */
.btn-premium {
    background-color: var(--accent-color);
    color: var(--bg-white) !important;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.6);
    transform: translateY(-3px);
}

.btn-premium-outline {
    background: transparent;
    color: var(--accent-color) !important;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    transition: var(--transition-smooth);
}

.btn-premium-outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ==========================================
   HEADER / NAVBAR
========================================== */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.logo-brand img {
    height: 52px;
    width: auto;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 111, 0, 0.05);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-futuristic {
    background: rgba(255, 111, 0, 0.15);
    border: 1px solid rgba(255, 111, 0, 0.3);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.25;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(to right, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-pill-list {
    margin-bottom: 40px;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
}

.hero-pill i, .hero-pill span.check-icon {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.hero-image-wrapper img:hover {
    transform: translateY(-5px);
}

/* ==========================================
   PHILOSOPHY & CHALLENGES SECTION (COMPARATIVE)
========================================== */
.philosophy-section {
    background-color: var(--bg-white);
}

/* Premium Redesigned Philosophy & Challenge Panels */
.challenges-wrapper {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

/* Premium Challenge Cards (Light with Red Accents) */
.premium-challenge-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--danger-color);
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-challenge-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-white);
    border-color: rgba(239, 68, 68, 0.2);
    border-left-color: var(--danger-color);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.06);
}

.challenge-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(239, 68, 68, 0.06);
    color: var(--danger-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.premium-challenge-card:hover .challenge-badge-icon {
    background-color: var(--danger-color);
    color: var(--bg-white);
    transform: scale(1.05) rotate(-3deg);
}

.premium-challenge-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.premium-challenge-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

.solutions-wrapper {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

/* Premium Solution Cards (Light with Green Accents) */
.premium-solution-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--success-color);
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-solution-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-white);
    border-color: rgba(16, 185, 129, 0.2);
    border-left-color: var(--success-color);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.06);
}

.solution-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(16, 185, 129, 0.06);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.premium-solution-card:hover .solution-badge-icon {
    background-color: var(--success-color);
    color: var(--bg-white);
    transform: scale(1.05) rotate(3deg);
}

.premium-solution-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.premium-solution-card p {
    font-size: 14px;
    color: #000 !important;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

/* ==========================================
   ECOSYSTEM PILLARS
========================================== */
.ecosystem-section {
    background-color: var(--bg-light);
}

.ecosystem-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 25px;
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.ecosystem-header {
    margin-bottom: 0px;
}

.ecosystem-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(255, 111, 0, 0.03));
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.ecosystem-card:hover .ecosystem-icon {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: rotate(5deg) scale(1.05);
}

.ecosystem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ecosystem-body p {
    margin-bottom: 20px;
    font-size: 14.5px;
}

.ecosystem-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ecosystem-list li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.ecosystem-list li::before {
    content: "\2726";
    color: var(--accent-color);
    position: absolute;
    left: 8px;
    font-size: 12px;
    top: 1px;
}

/* ==========================================
   INTERACTIVE BOOKSHELF / BROCHURE SHOWCASE
========================================== */
.bookshelf-section {
    background-color: var(--bg-white);
}

.bookshelf-grid {
    margin-top: 50px;
}

.book-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    background-color: var(--bg-white);
    border-color: var(--accent-color);
}

.book-cover-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    perspective: 1000px;
}

.book-cover {
    width: auto;
    height: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.book-card:hover .book-cover {
    transform: rotateY(-15deg) translateY(-5px);
    box-shadow: -8px 12px 28px rgba(0,0,0,0.22);
}

.book-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.book-card p {
    font-size: 12.5px;
    margin-bottom: 20px;
}

.btn-book-download {
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.book-card:hover .btn-book-download {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-white) !important;
}

/* ==========================================
   WHY CHOOSE US / BRAND IDENTITY
========================================== */
.why-choose-section {
    background: radial-gradient(circle at 10% 80%, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.why-choose-section .section-header h2 {
    color: var(--bg-white);
}

.why-choose-section .section-header p {
    color: #94a3b8;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.why-card h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-card h4 i, .why-card h4 span {
    color: var(--secondary-color);
}

.why-card p {
    color: #cbd5e1;
    font-size: 13.5px;
    margin-bottom: 0;
}

/* ==========================================
   BENEFITS STAKEHOLDERS (INTERACTIVE)
========================================== */
.stakeholders-section {
    background-color: var(--bg-light);
}

.persona-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.persona-tab {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.persona-tab:hover, .persona-tab.active {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: 0 6px 15px var(--accent-glow);
}

.persona-content-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 50px;
    min-height: 350px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.persona-pane {
    display: none;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.persona-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.persona-pane h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.persona-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.persona-benefit-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.persona-benefit-card:hover {
    background-color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: var(--card-shadow);
}

.persona-benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.persona-benefit-card h4 span.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
}

.persona-benefit-card p {
    font-size: 13px;
    margin-bottom: 0;
}

/* ==========================================
   IMPLEMENTATION PROCESS (TIMELINE)
========================================== */
.process-section {
    background-color: var(--bg-white);
}
/* ==========================================
   FUTURISTIC PROCESS GRID STEPS
========================================== */
.process-section {
    background-color: var(--bg-white);
}

.process-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 111, 0, 0.2);
    box-shadow: var(--hover-shadow);
    background-color: var(--bg-white);
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    position: absolute;
    right: 25px;
    top: 5px;
    font-size: 85px;
    font-weight: 800;
    color: rgba(255, 111, 0, 0.04);
    line-height: 1;
    user-select: none;
    transition: var(--transition-smooth);
}

.process-card:hover .process-number {
    color: rgba(255, 111, 0, 0.09);
    transform: scale(1.1) translateY(2px);
}

.process-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 111, 0, 0.06);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 111, 0, 0.1);
}

.process-card:hover .process-icon-container {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.25);
}

.process-step-tag {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 22px;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.18);
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.65;
    margin-bottom: 0;
    font-weight: 500;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
========================================== */
.faq-section {
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 16px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 111, 0, 0.15);
    box-shadow: 0 6px 15px rgba(0,0,0,0.03);
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-trigger h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    padding-right: 20px;
    transition: var(--transition-smooth);
}

.faq-trigger:hover h4, .faq-item.active .faq-trigger h4 {
    color: var(--accent-color);
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 111, 0, 0.05);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-weight: 700;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 30px 24px 30px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================
   CONSULTATION FORM (LEAD GENERATION)
========================================== */
.contact-section {
    background: radial-gradient(circle at 50% 50%, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.form-wrapper h3 {
    color: var(--bg-white);
    font-size: 26px;
    margin-bottom: 10px;
    text-align: center;
}

.form-wrapper p {
    color: #94a3b8;
    margin-bottom: 40px;
    text-align: center;
    font-size: 14.5px;
}

.form-control-custom {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-white) !important;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.25);
    outline: none;
}

.form-control-custom::placeholder {
    color: #64748b;
}

label.form-label-custom {
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-white) !important;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    margin-top: 15px;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.6);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER & FLOATING CONTACT WIDGET
========================================== */
.footer {
    background-color: #050b16;
    color: #cbd5e1;
    padding: 50px 0 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: var(--bg-white);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: -0.01em;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-info {
    font-size: 15.5px;
    color: #e2e8f0;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact-info svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-info a {
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-contact-info a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 60px;
    font-size: 14.5px;
    color: #fff;
    font-weight: 500;
}

/* Dynamic Floating Widget */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

.btn-call {
    background-color: var(--accent-color);
}

.btn-call:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
    transform: translateY(-5px);
}

/* ==========================================
   RESPONSIVE STYLING
========================================== */
@media (max-width: 1280px) {
    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        color: var(--bg-white);
        margin-bottom: 20px;
    }
    .hero-image-wrapper img {
        width: 100%;
        max-width: 680px;
        height: auto;
    }
}

@media (max-width: 1199px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .hero {
        padding: 50px 0 50px;
        text-align: center;
    }
    .hero-pill-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-image-wrapper {
        margin-top: 50px;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-card {
        width: 85%;
    }
    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        left: 60px;
    }
    .form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 25px;
        margin-bottom: 12px;
    }
    .hero {
        padding: 40px 0 40px;
    }
    h1, .hero h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 14.5px;
        line-height: 1.6;
    }
    .hero-pill {
        padding: 8px 16px;
        font-size: 12.5px;
        margin-right: 6px;
        margin-bottom: 6px;
    }
    .ecosystem-card {
        padding: 25px;
    }
    .ecosystem-card h3 {
        font-size: 19px;
    }
    .book-card {
        padding: 20px;
    }
    .book-cover {
        height: 180px;
    }
    .premium-challenge-card,
    .premium-solution-card {
        padding: 20px 16px;
    }
    .challenges-wrapper,
    .solutions-wrapper {
        padding: 25px 20px;
    }
    .process-card {
        padding: 25px 20px;
    }
    .process-number {
        font-size: 65px;
        right: 15px;
        top: 0px;
    }
    .persona-tab {
        padding: 8px 18px;
        font-size: 12.5px;
    }
    .persona-content-wrapper {
        padding: 25px 20px;
    }
    .persona-pane h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .form-wrapper {
        padding: 24px 20px;
    }
    .form-wrapper h3 {
        font-size: 22px;
    }
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
    }
}

/* ==========================================
   PREMIUM WIDESCREEN PRESENTATION GALLERY MODAL
========================================== */
.modal-xl-custom {
    max-width: 94% !important;
    width: 94% !important;
}

@media (max-width: 991px) {
    .modal-xl-custom {
        max-width: 96% !important;
        width: 96% !important;
    }
}

.modal-body-gallery {
    padding: 20px 80px !important;
}

@media (max-width: 767px) {
    .modal-body-gallery {
        padding: 10px 45px !important;
    }
}

.proposal-thumbnails-container {
    background: #060b13;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 111, 0, 0.3) transparent;
}

.proposal-thumbnails-container::-webkit-scrollbar {
    height: 4px;
}

.proposal-thumbnails-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 111, 0, 0.3);
    border-radius: 4px;
}

.proposal-thumb-item {
    border: 2px solid transparent;
    opacity: 0.55;
    transition: var(--transition-smooth);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.proposal-thumb-item.active {
    border-color: var(--accent-color) !important;
    opacity: 1 !important;
    box-shadow: 0 0 12px rgba(255, 111, 0, 0.45);
    transform: scale(1.05);
}

.proposal-thumb-item:hover {
    opacity: 0.9;
}

/* Floating controls outside the content on widescreen */
.carousel-control-outer-prev,
.carousel-control-outer-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    opacity: 0.75 !important;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-outer-prev {
    left: 20px;
}

.carousel-control-outer-next {
    right: 20px;
}

.carousel-control-outer-prev:hover,
.carousel-control-outer-next:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
    .modal-body-gallery {
        padding: 5px 0 !important;
    }
    .carousel-control-outer-prev {
        left: 8px;
    }
    .carousel-control-outer-next {
        right: 8px;
    }
    .carousel-control-outer-prev,
    .carousel-control-outer-next {
        width: 36px;
        height: 36px;
        background-color: rgba(0, 0, 0, 0.45) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    .carousel-control-outer-prev svg,
    .carousel-control-outer-next svg {
        width: 20px;
        height: 20px;
    }
    .proposal-thumbnails-container {
        padding: 8px 5px !important;
    }
    .proposal-thumb-item {
        width: 60px !important;
    }
    .proposal-thumb-item img {
        height: 36px !important;
    }
}

.one{
    font-size: 42px; line-height: 1.2; margin-bottom: 20px;
}