.elementor-7631 .elementor-element.elementor-element-74908de{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-ef32a64{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-86223e7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-575a10d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-835cd72{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-7397bb4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-8aa1e63{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-1c0cff1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-f58ac32{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-458d422{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7631 .elementor-element.elementor-element-5c44c1c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-442b45e */:root {
    /* Primary Colors */
    --primary-blue: #052f6f;
    --primary-purple: #052f6f;
    --light-blue: #052f6f;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #052f6f 100%, #052f6f 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-normal);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-normal);
}

.hero-description-secondary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: var(--font-weight-normal);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    min-width: 240px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--gray-50);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.trust-indicator {
    margin-top: 1.5rem;
}

.trust-indicator p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 6rem 0 7rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

/* Accessibility */
.btn:focus {
    outline: 3px solid var(--light-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3028a97 */:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --primary-blue: #052f6f;
    --primary-purple: #052f6f;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Challenges Section */
.challenges-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Challenge Card */
.challenge-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.challenge-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.challenge-card p {
    color: var(--gray-600);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* Section Callout */
.section-callout {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.section-callout p {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .challenges-section {
        padding: 6rem 0;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility */
.challenge-card:focus-within {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .challenge-card {
        transition: none;
    }
    
    .challenge-card:hover {
        transform: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4fe6580 *//* ==========================================
   FABRIC ARCHITECTURE SECTION
========================================== */

.dc-fabric-section {
  background: #ffffff;
  padding: 100px 6%;
}

.dc-fabric-wrap {
  max-width: 1000px;
  margin: auto;
}

/* Heading */
.dc-fabric-section h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #0f172a;
}

/* Paragraphs */
.dc-fabric-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #5b6b82;
  margin-bottom: 22px;
}

/* List Styling */
.dc-fabric-section ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.dc-fabric-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6b82;
}

/* Custom Bullet */
.dc-fabric-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #004bbd;
  font-size: 22px;
  line-height: 1;
}

/* Strong Text */
.dc-fabric-section strong {
  color: #0f172a;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

  .dc-fabric-section {
    padding: 70px 20px;
  }

  .dc-fabric-section h2 {
    font-size: 26px;
  }

  .dc-fabric-section p,
  .dc-fabric-section ul li {
    font-size: 15px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d768379 */:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-900: #052f6f;
    --primary-purple: #052f6f;
    --light-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Solutions Content */
.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Solution Item */
.solution-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--light-blue);
}

/* Solution Header */
.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solution-item h3 {
    font-size: 1.375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    flex: 1;
    line-height: 1.3;
}

/* Solution Description */
.solution-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.solution-item strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .solution-header {
        gap: 1.5rem;
    }
    
    .solution-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .solutions-section {
        padding: 6rem 0;
    }
    
    .solution-item {
        padding: 2.5rem;
    }
}

/* Accessibility */
.solution-item:focus-within {
    outline: 3px solid var(--light-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .solution-item {
        transition: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b03728a */:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --primary-blue: #1e3a8a;
    --primary-purple: #7c3aed;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Benefit Card */
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-blue);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-purple);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.938rem;
}

.benefit-card strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .benefits-section {
        padding: 6rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
}

/* Accessibility */
.benefit-card:focus-within {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .benefit-card {
        transition: none;
    }
    
    .benefit-card:hover {
        transform: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6c20c0b */:root {
    /* Colors */
    --white: #ffffff;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Process Step */
.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3.5rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, #7c3aed, #3b82f6);
    opacity: 0.3;
}

/* Step Marker */
.step-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Step Content */
.step-content {
    flex: 1;
    padding-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.step-content strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .process-step {
        gap: 2rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 1.75rem;
    }
    
    .step-content h3 {
        font-size: 1.375rem;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .process-section {
        padding: 6rem 0;
    }
    
    .process-timeline {
        gap: 2.5rem;
    }
}

/* Accessibility */
.process-step:focus-within .step-number {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .step-number {
        transition: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f282278 *//* ========================================
   SECTION 6: WHY CHOOSE CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --primary-blue: #1e3a8a;
    --gradient-light: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Why Card */
.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.why-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.why-card p:last-of-type {
    margin-bottom: 0;
}

.why-card strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

/* Vendor Logos */
.vendor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vendor-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--gradient-light);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-card {
        padding: 2.5rem;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .why-choose-section {
        padding: 6rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility */
.why-card:focus-within {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .why-card {
        transition: none;
    }
    
    .why-card:hover {
        transform: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-70009ed */.cloud-faq-section {
  background: #fff;
  padding: 90px 20px;
}
.cloud-faq-wrap {
  max-width: 900px;
  margin: auto;
}
.cloud-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.cloud-faq-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 12px;
  color: #0f172a;
}
.cloud-faq-header p {
  font-size: 17px;
  color: #5b6b82;
  margin: 0;
}
.cloud-faq-item {
  border-bottom: 1px solid #e5eaf3;
  padding: 20px 0;
}
.cloud-faq-item:last-child {
  border-bottom: none;
}
.cloud-faq-item summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #0f172a;
  padding-right: 30px;
  position: relative;
  list-style: none;
}
.cloud-faq-item summary::-webkit-details-marker {
  display: none;
}
.cloud-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #0a4fd8;
  font-weight: 400;
}
.cloud-faq-item[open] summary::after {
  content: "−";
}
.cloud-faq-item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6b82;
}
@media(max-width: 768px) {
  .cloud-faq-section { padding: 70px 16px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-88bb753 *//* ==========================================
   PROOF / AUTHORITY SECTION
========================================== */

.dc-proof-section {
  background: #f8fafc;
  padding: 100px 6%;
  border-top: 1px solid #e5eaf3;
  border-bottom: 1px solid #e5eaf3;
}

.dc-proof-wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Heading */
.dc-proof-section h2 {
  font-size: 32px;
  margin-bottom: 22px;
  color: #0f172a;
}

/* Paragraph */
.dc-proof-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #5b6b82;
}

/* Optional subtle accent line */
.dc-proof-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #004bbd;
  margin: 18px auto 0;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

  .dc-proof-section {
    padding: 70px 20px;
  }

  .dc-proof-section h2 {
    font-size: 26px;
  }

  .dc-proof-section p {
    font-size: 16px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d96ec6f *//* ========================================
   SECTION 8: FINAL CTA CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #052f6f 100%);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-medium);
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-description strong {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

/* CTA Action (Single Button) */
.cta-action {
    margin: 3rem 0;
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    letter-spacing: 0.01em;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
    background-color: var(--gray-50);
}

.cta-supporting-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    min-width: 240px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--gray-50);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* CTA Capabilities */
.cta-capabilities {
    margin: 3rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.capabilities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

/* Contact Info */
.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    font-weight: var(--font-weight-semibold);
    color: var(--white);
}

.cta-tagline {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.375rem;
    }
    
    .btn-primary-large {
        padding: 1.5rem 3.5rem;
        font-size: 1.25rem;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .final-cta-section {
        padding: 7rem 0;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .btn-primary-large {
        padding: 1.5rem 4rem;
        font-size: 1.25rem;
    }
}

/* Accessibility */
.btn-primary-large:focus {
    outline: 3px solid var(--light-blue);
    outline-offset: 3px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .btn-primary-large {
        transition: none;
    }
    
    .btn-primary-large:hover {
        transform: none;
    }
}/* End custom CSS */