/* Integration & Enterprise Systems Page Styles */

/* Hero Section */
.integration-hero-wrapper {
    position: relative;
    width: 100%;
    height: 446px; /* Matching height from Figma */
    overflow: hidden;
}

.integration-banner-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.integration-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.integration-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 20px;
}

.integration-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    color: #ffffff;
    gap: 28px;
}

.integration-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400; 
    color: #ffffff;
    line-height: 66px;
    letter-spacing: -1.06px;
    text-align: center;
    margin: 0;
}

.integration-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    max-width: 800px;
    margin: 0;
}

.integration-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.integration-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 6px;
    padding: 0 32px;
    height: 48px;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.integration-btn:hover {
    background-color: #f0f0f0;
}

.integration-btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.integration-btn:hover .integration-btn-icon {
    transform: translateX(4px);
}

/* Strategic Assessment Section */
.strategic-assessment-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.strategic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.strategic-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategic-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0b0f19;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.strategic-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #667085;
}

.strategic-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.strategic-card {
    flex: 1;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 40px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon-wrapper {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.friction-icon-bg {
    background-color: #e85c291a;
}

.nexus-icon-bg {
    background-color: #00a63e1a;
}

.card-icon {
    width: 24px;
    height: 24px;
    margin: 0; /* Override global style.css .card-icon margin */
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin: 0;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Friction List */
.friction-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.friction-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #344054;
}

.list-icon {
    width: 20px;
    height: 20px;
}

/* Nexus Highlight Box */
.nexus-highlight-box {
    background-color: #F6FEF9;
    border: 1px solid #D1FADF;
    border-radius: 8px;
    padding: 20px;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.highlight-icon {
    width: 16px;
    height: 16px;
}

.highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #039855;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    font-style: italic;
    margin: 0;
}

/* CTA Bar */
.strategic-cta-bar {
    background-color: #1D293D;
    border-radius: 12px;
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF5722;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #f44336;
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* System Integration Section */
.system-integration-section {
    background-color: #0b0f19;
    padding: 80px 20px;
    color: #ffffff;
}

.system-container {
    max-width: 1200px;
    margin: 0 auto;
}

.system-header {
    text-align: center;
    margin-bottom: 60px;
}

.system-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.system-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #98A2B3;
    margin-bottom: 24px;
}

.system-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #98A2B3;
    max-width: 960px;
    margin: 0 auto;
    line-height: 24px;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.system-card {
    background-color: #151922;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.system-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
}

.system-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.system-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #98A2B3;
    margin: 0;
}

.system-cta-wrapper {
    display: flex;
    justify-content: center;
}

.system-btn {
    display: inline-block;
    background-color: #FF5722;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.system-btn:hover {
    background-color: #f44336;
}

/* API Management Section (Light UI) */
.api-management-section {
    padding: 80px 20px;
    background-color: #ffffff;
    background-image: linear-gradient(121.73deg, #f9fafb 0%, #ffffff 100%);
}

.api-container {
    max-width: 1200px;
    margin: 0 auto;
}

.api-header {
    text-align: center;
    margin-bottom: 60px;
}

.api-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #364153;
    margin-bottom: 24px;
}

.api-tag-dot {
    width: 8px;
    height: 8px;
    background-color: #e85c29;
    border-radius: 50%;
    opacity: 0.5;
}

.api-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
    line-height: 1.1;
}

.api-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4a5565;
}

.api-content-wrapper {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.api-features-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.api-feature-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.api-card-main {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.api-icon-box {
    width: 57px;
    height: 57px;
    background: #e85c291a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.api-icon {
    width: 28px;
    height: 28px;
}

.api-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.api-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #101828;
    margin: 0;
}

.api-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a5565;
    margin: 0;
}

.api-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.api-tag-pill {
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #364153;
}

.api-card-image {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.api-testimonial-col {
    flex: 1;
}

.testimonial-card-dark {
    background-image: linear-gradient(134.93deg, #101828 0%, #1e2939 100%);
    border-radius: 14px;
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial-card-dark::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 130px;
    height: 130px;
    background: #e85c29;
    filter: blur(65px);
    opacity: 0.2;
    border-radius: 50%;
}

.testimonial-icon-wrapper {
    width: 49px;
    height: 49px;
    background: #e85c29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.testimonial-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 30px;
    margin: 0 0 24px 0;
}

.testimonial-author {
    padding-top: 24px;
    border-top: 1px solid #364153;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #99a1af;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 92, 41, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 16px;
}

.compliance-icon {
    width: 12px;
    height: 12px;
}

.compliance-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #e85c29;
}

.api-cta-wrapper {
    display: flex;
    justify-content: center;
}

.api-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85c29;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.api-btn:hover {
    background: #d64d1f;
}

.api-btn-icon {
    width: 20px;
    height: 20px;
}

/* ESB & Middleware Section (Dark UI) */
.esb-section {
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #ffffff;
}

.esb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.esb-header {
    text-align: center;
    margin-bottom: 40px;
}

.esb-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.esb-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #99a1af;
}

.esb-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #d1d5dc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.esb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.esb-card {
    background: #1a1a1a;
    border: 1px solid #1e2939;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s ease;
}

.esb-card:hover {
    transform: translateY(-5px);
    border-color: #e85c29;
}

.esb-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
}

.esb-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.esb-guarantee-banner {
    background: #1a1a1a;
    border: 1px solid #1e2939;
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.guarantee-icon {
    width: 32px;
    height: 32px;
}

.guarantee-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.esb-cta-wrapper {
    display: flex;
    justify-content: center;
}

.esb-btn {
    display: inline-block;
    background: #e85c29;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.esb-btn:hover {
    background: #d64d1f;
}

/* Data Integration (ETL/ELT) Section */
.data-integration-section {
    padding: 80px 20px;
    background-color: #ffffff;
    background-image: linear-gradient(125.1deg, #f9fafb 0%, #f3f4f6 100%);
}

.data-container {
    max-width: 1200px;
    margin: 0 auto;
}

.data-header {
    text-align: center;
    margin-bottom: 40px;
}

.data-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
}

.data-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #4a5565;
}

.data-intro-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    padding: 32px;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.data-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #364153;
    margin: 0;
}

.data-content-wrapper {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.data-features-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.data-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 57px;
    height: 57px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gradient-orange-icon {
    background: linear-gradient(180deg, #e85c29 0%, #d14d1f 100%);
}

.border-orange-icon {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.feature-icon-white {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.feature-icon-orange {
    width: 28px;
    height: 28px;
}

.data-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 12px 0;
}

.data-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #4a5565;
    margin: 0 0 24px 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #e85c29;
    border-radius: 50%;
    opacity: 0.5;
}

.dot-1 { opacity: 0.68; }
.dot-2 { opacity: 0.84; }
.dot-3 { opacity: 0.96; }

.live-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85c29;
    text-transform: uppercase;
}

.accuracy-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.accuracy-icon {
    width: 16px;
    height: 16px;
}

.accuracy-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6a7282;
}

.data-outcome-col {
    flex: 1;
}

.outcome-card-orange {
    background: linear-gradient(180deg, #e85c29 0%, #d14d1f 100%);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.outcome-icon-box {
    width: 49px;
    height: 49px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-icon {
    width: 24px;
    height: 24px;
}

.outcome-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.outcome-quote-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
}

.outcome-quote {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.outcome-stats-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.outcome-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.outcome-roi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    align-self: flex-start;
}

.roi-icon {
    width: 16px;
    height: 16px;
}

.roi-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.data-cta-wrapper {
    display: flex;
    justify-content: center;
}

.data-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85c29;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.data-btn:hover {
    background: #d64d1f;
}

.data-btn-icon {
    width: 20px;
    height: 20px;
}

/* Enterprise Application Integration (EAI) Section */
.eai-section {
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: #ffffff;
}

.eai-container {
    max-width: 1200px;
    margin: 0 auto;
}

.eai-header {
    text-align: center;
    margin-bottom: 40px;
}

.eai-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #f5f5f5;
    margin-bottom: 12px;
}

.eai-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #a1a1a1;
}

.eai-intro-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.eai-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: rgba(245, 245, 245, 0.8);
    margin: 0;
}

/* Certified Platforms Grid */
.eai-platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.eai-platform-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 130px;
    justify-content: center;
}

.eai-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 92, 41, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eai-icon {
    width: 20px;
    height: 20px;
}

.eai-platform-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.9);
    text-align: center;
    line-height: 1.2;
}

/* Feature Cards (Auto-Sync & Real-time) */
.eai-features-wrapper {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
}

.eai-feature-card {
    flex: 1;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 16px;
}

.eai-feature-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(232, 92, 41, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eai-feature-icon {
    width: 20px;
    height: 20px;
}

.eai-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eai-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eai-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #f5f5f5;
    margin: 0;
}

.eai-corner-icon {
    width: 20px;
    height: 20px;
    opacity: 0.4;
}

.eai-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #a1a1a1;
    margin: 0;
}

/* CTA */
.eai-cta-wrapper {
    display: flex;
    justify-content: center;
}

.eai-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85c29;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0px 10px 15px -3px rgba(232, 92, 41, 0.25);
}

.eai-btn:hover {
    background: #d64d1f;
}

.eai-btn-icon {
    width: 20px;
    height: 20px;
}

/* =========================================
   Platform Integration (PaaS/iPaaS) Section
   ========================================= */
.paas-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
    color: #101828;
}

.paas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.paas-header {
    text-align: center;
    margin-bottom: 24px;
}

.paas-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
}

.paas-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a5565;
}

.paas-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #364153;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.paas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.paas-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.paas-icon-box {
    width: 57px;
    height: 57px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.paas-icon {
    width: 28px;
    height: 28px;
}

.paas-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 12px;
}

.paas-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #4a5565;
    margin: 0;
}

.paas-cta-wrapper {
    display: flex;
    justify-content: center;
}

.paas-btn {
    display: inline-block;
    background-color: #e85c29;
    color: #ffffff;
    padding: 12px 48px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.paas-btn:hover {
    background-color: #d64d1f;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    /* API Section */
    .api-content-wrapper {
        flex-direction: column;
    }
    
    .api-features-col {
        order: 2;
    }
    
    .api-testimonial-col {
        order: 1;
    }
    
    /* System Integration Responsive */
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* ESB Section */
    .esb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Data Section */
    .data-content-wrapper {
        flex-direction: column;
    }

    /* EAI Section */
    .eai-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .eai-features-wrapper {
        flex-direction: column;
    }

    /* PaaS Section */
    .paas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .integration-hero-wrapper {
        height: auto;
        min-height: 450px;
    }
    
    .integration-hero-overlay {
        padding: 60px 20px;
    }

    .integration-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .integration-desc {
        font-size: 16px;
        max-width: 100%;
    }
    
    .integration-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Strategic Section Responsive */
    .strategic-cards {
        flex-direction: column;
    }

    .strategic-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }

    /* System Integration Responsive */
    .system-grid {
        grid-template-columns: 1fr;
    }

    /* API Section Responsive */
    .api-title {
        font-size: 36px;
    }
    
    .api-feature-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .api-card-main {
        flex-direction: column;
    }
    
    .api-card-image {
        width: 100%;
        height: 200px;
        margin-top: 16px;
    }

    /* ESB Section Responsive */
    .esb-grid {
        grid-template-columns: 1fr;
    }
    
    .esb-guarantee-banner {
        flex-direction: column;
        text-align: center;
    }

    /* Data Integration (ETL/ELT) Section - mobile padding */
    .data-integration-section {
        padding: 48px 24px 80px;
    }

    .data-container {
        padding-left: 0;
        padding-right: 0;
    }

    .data-intro-card {
        padding: 24px 20px;
        margin-bottom: 40px;
    }

    .data-feature-card {
        padding: 24px 20px;
    }

    .data-content-wrapper {
        gap: 20px;
        margin-bottom: 40px;
    }

    .data-title {
        font-size: 36px;
    }

    .outcome-stats-wrapper {
        flex-direction: column;
    }

    /* EAI Section */
    .eai-title {
        font-size: 32px;
    }

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

    .eai-feature-card {
        flex-direction: column;
    }

    .eai-feature-header {
        align-items: flex-start;
    }

    /* Platform Integration (PaaS/iPaaS) Section - mobile padding */
    .paas-section {
        padding: 48px 24px 80px;
    }

    .paas-container {
        padding-left: 0;
        padding-right: 0;
    }

    .paas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .paas-card {
        padding: 24px 20px;
    }

    .paas-title {
        font-size: 32px;
    }
}

/* ========== CTA Banner above footer ========== */
.ies-cta-banner {
    background: var(--primary-color);
    padding: 64px 24px;
    text-align: center;
}

.ies-cta-banner-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.ies-cta-banner-title {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    white-space: nowrap;
}

.ies-cta-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 0 32px;
}

.ies-cta-banner-btn {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}

.ies-cta-banner-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .ies-cta-banner {
        padding: 48px 20px;
    }

    .ies-cta-banner-title {
        white-space: normal;
    }

    .ies-cta-banner-subtitle {
        font-size: 16px;
    }

    .ies-cta-banner-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
