 :root {
     --bg-primary: #f0f5fe;
     --bg-secondary: #ffffff;
     --bg-card: #1a4fa0;
     --bg-card-hover: #132640;
     --accent-teal: #00c6b8;
     --accent-blue: #1a6fff;
     --accent-teal-dim: rgba(0, 198, 184, 0.12);
     --accent-blue-dim: rgba(26, 111, 255, 0.10);
     --text-primary: #e8f0f8;
     --text-secondary: #ffffff;
     --text-primary-dark: #000000;
     --text-secondary-dark: #131212;
     --text-muted: #4d6a87;
     --text-muted: #4d6a87;
     --border: rgba(0, 198, 184, 0.15);
     --border-subtle: rgba(255, 255, 255, 0.06);
     --gradient-hero: linear-gradient(135deg, #2563c8 0%, #1a4fa0 50%, #0d2d6b 100%);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }



 /* ─── HERO ─── */
 .hero {
     min-height: 50vh;
     display: flex;
     align-items: center;
     position: relative;
     padding: 50px 15% 80px;
     background: var(--gradient-hero);
     overflow: hidden;
 }

 /* Geometric background lines */
 .hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background:
         linear-gradient(rgba(8, 33, 61, 0.178), rgba(26, 79, 160, 0.24)),
         url(/assete/images/page-banner/cunsultation.webp);
     background-size: cover;
     background-position: center;
 }



 .hero-content {
     position: relative;
     z-index: 1;
     /* max-width: 760px; */
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--accent-teal-dim);
     border: 1px solid rgba(0, 198, 184, 0.25);
     border-radius: 100px;
     padding: 6px 16px;
     font-size: 12px;
     font-weight: 500;
     color: var(--accent-teal);
     letter-spacing: 0.8px;
     text-transform: uppercase;
     margin-bottom: 28px;
     opacity: 0;
     animation: fadeUp 0.7s 0.2s ease forwards;
 }

 .hero-badge::before {
     content: '';
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--accent-teal);
     animation: pulse 2s infinite;
 }

 .inner {
     max-width: 1280px;
     margin: auto;
 }

 .hero-inner {
     max-width: 1280px;
     /* margin: 0 auto; */
     display: grid;
     height: 100%;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.5;
         transform: scale(1.3);
     }
 }

 .hero h1 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     font-weight: 700;
     line-height: 1.05;
     color: var(--text-primary);
     margin-bottom: 24px;
     opacity: 0;
     animation: fadeUp 0.7s 0.4s ease forwards;
 }

 .hero h1 .highlight {
     background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-desc {
     font-size: 1.1rem;
     color: var(--text-secondary);
     max-width: 620px;
     line-height: 1.75;
     margin-bottom: 40px;
     opacity: 0;
     animation: fadeUp 0.7s 0.6s ease forwards;
 }

 .hero-actions {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     opacity: 0;
     animation: fadeUp 0.7s 0.8s ease forwards;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
     color: #fff;
     border: none;
     padding: 14px 32px;
     border-radius: 8px;
     font-family: 'Syne', sans-serif;
     font-weight: 500;
     font-size: 15px;
     cursor: pointer;
     text-decoration: none;
     transition: transform 0.2s, box-shadow 0.2s;
     box-shadow: 0 4px 24px rgba(0, 198, 184, 0.25);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 32px rgba(0, 198, 184, 0.35);
 }

 .btn-secondary {
     background: #2d659a;
     color: var(--text-primary);
     border: 1px solid var(--border);
     padding: 14px 32px;
     border-radius: 8px;
     font-family: 'Syne', sans-serif;
     font-weight: 500;
     font-size: 15px;
     cursor: pointer;
     text-decoration: none;
     transition: border-color 0.2s, background 0.2s, transform 0.2s;
 }

 .btn-secondary:hover {
     border-color: var(--accent-teal);
     background: var(--accent-teal-dim);
     transform: translateY(-2px);
 }

 /* Hero stats */
 .hero-stats {
     display: flex;
     gap: 48px;
     margin-top: 60px;
     padding-top: 40px;
     border-top: 1px solid var(--border-subtle);
     opacity: 0;
     animation: fadeUp 0.7s 1s ease forwards;
 }

 .stat-value {
     font-family: 'Syne', sans-serif;
     font-weight: 800;
     font-size: 2rem;
     background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .stat-label {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 2px;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* ─── SECTIONS ─── */
 section {
     padding: 100px 5%;
     position: relative;
 }

 .section-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--accent-teal);
     margin-bottom: 12px;
 }

 .section-title {
     font-family: 'Syne', sans-serif;
     font-weight: 800;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: var(--text-primary-dark);
     line-height: 1.15;
     margin-bottom: 20px;
 }

 .section-subtitle {
     font-size: 1rem;
     color: var(--text-secondary-dark);
     max-width: 580px;
     line-height: 1.75;
 }

 .section-header {
     margin-bottom: 60px;
 }

 /* ─── CAPABILITIES / FEATURES ─── */
 .capabilities {
     background: var(--bg-secondary);
 }

 .capabilities::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 24px;
 }

 .feature-card {
     background: var(--bg-card);
     border: 1px solid var(--border-subtle);
     border-radius: 16px;
     padding: 36px 32px;
     position: relative;
     overflow: hidden;
     transition: border-color 0.3s, background 0.3s, transform 0.3s;
     opacity: 0;
     transform: translateY(30px);
 }

 .feature-card.visible {
     opacity: 1;
     transform: translateY(0);
     transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, background 0.3s;
 }

 .feature-card:hover {
     border-color: rgba(0, 198, 184, 0.3);
     background: var(--bg-card-hover);
     transform: translateY(-4px);
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
     opacity: 0;
     transition: opacity 0.3s;
 }

 .feature-card:hover::before {
     opacity: 1;
 }

 .feature-icon {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     background: var(--accent-teal-dim);
     border: 1px solid rgba(0, 198, 184, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     font-size: 22px;
 }

 .feature-number {
     position: absolute;
     top: 28px;
     right: 28px;
     font-family: 'Syne', sans-serif;
     font-weight: 800;
     font-size: 3rem;
     color: rgb(255, 255, 255);
     line-height: 1;
 }

 .feature-card h3 {
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: 1.1rem;
     color: var(--text-primary);
     margin-bottom: 12px;
 }

 .feature-card p {
     font-size: 0.92rem;
     color: var(--text-secondary);
     line-height: 1.7;
 }

 /* ─── INDUSTRIES ─── */
 .industries {
     background: var(--bg-primary);
 }

 .industries-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .industries-visual {
     position: relative;
 }

 .industry-cards-stack {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .industry-card {
     background: var(--bg-card);
     border: 1px solid var(--border-subtle);
     border-radius: 12px;
     padding: 24px 28px;
     display: flex;
     align-items: flex-start;
     gap: 20px;
     transition: border-color 0.3s, transform 0.3s;
     opacity: 0;
     transform: translateX(-20px);
 }

 .industry-card.visible {
     opacity: 1;
     transform: translateX(0);
     transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
 }

 .industry-card:hover {
     border-color: rgba(0, 198, 184, 0.3);
     transform: translateX(6px);
 }

 .industry-icon {
     width: 44px;
     height: 44px;
     min-width: 44px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--accent-teal-dim), var(--accent-blue-dim));
     border: 1px solid rgba(0, 198, 184, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
 }

 .industry-info h4 {
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: 0.95rem;
     color: var(--text-primary);
     margin-bottom: 4px;
 }

 .industry-info p {
     font-size: 0.85rem;
     color: var(--text-secondary);
     line-height: 1.6;
 }

 .industries-content .section-subtitle {
     margin-bottom: 32px;
 }

 .domain-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, var(--accent-teal-dim), var(--accent-blue-dim));
     border: 1px solid rgba(0, 198, 184, 0.2);
     border-radius: 8px;
     padding: 12px 20px;
     font-size: 0.9rem;
     color: var(--accent-teal);
     font-weight: 500;
 }

 /* ─── METHODOLOGY ─── */
 .methodology {
     background: var(--bg-secondary);
     overflow: hidden;
 }

 .methodology::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 0;
     position: relative;
     margin-top: 60px;
 }

 .process-steps::before {
     content: '';
     position: absolute;
     top: 28px;
     left: 10%;
     right: 10%;
     height: 2px;
     background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
     z-index: 0;
 }

 .step-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 16px;
     position: relative;
     z-index: 1;
     opacity: 0;
     transform: translateY(20px);
 }

 .step-item.visible {
     opacity: 1;
     transform: translateY(0);
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .step-circle {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: var(--bg-secondary);
     border: 2px solid var(--accent-teal);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Syne', sans-serif;
     font-weight: 800;
     font-size: 16px;
     color: var(--accent-teal);
     margin-bottom: 20px;
     position: relative;
 }

 .step-circle::after {
     content: '';
     position: absolute;
     inset: -5px;
     border-radius: 50%;
     border: 1px solid rgba(0, 198, 184, 0.15);
 }

 .step-item h4 {
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: 0.88rem;
     color: var(--text-primary-dark);
     margin-bottom: 8px;
 }

 .step-item p {
     font-size: 0.8rem;
     color: var(--text-secondary-dark);
     line-height: 1.6;
 }

 /* ─── INTEGRATIONS ─── */
 .integrations {
     background: var(--bg-primary);
 }

 .integrations-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .integration-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
 }

 .pill {
     background: var(--bg-card);
     border: 1px solid var(--border-subtle);
     border-radius: 100px;
     padding: 10px 20px;
     font-size: 0.88rem;
     color: var(--text-secondary);
     display: flex;
     align-items: center;
     gap: 8px;
     transition: border-color 0.2s, color 0.2s, background 0.2s;
     opacity: 0;
     transform: scale(0.9);
 }

 .pill.visible {
     opacity: 1;
     transform: scale(1);
     transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s, color 0.2s;
 }

 .pill:hover {
     border-color: var(--accent-teal);
     color: var(--accent-teal);
     background: var(--accent-teal-dim);
 }

 .pill-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--accent-teal);
 }

 .integrations-description {
     font-size: 0.95rem;
     color: var(--text-secondary-dark);
     line-height: 1.75;
     margin-bottom: 24px;
 }

 /* ─── FAQ ─── */
 .faq {
     background: var(--bg-secondary);
 }

 .faq::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
 }

 .faq-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .faq-item {
     background: var(--bg-card);
     border: 1px solid var(--border-subtle);
     border-radius: 14px;
     overflow: hidden;
     opacity: 0;
     transform: translateY(20px);
 }

 .faq-item.visible {
     opacity: 1;
     transform: translateY(0);
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     padding: 24px 28px;
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 16px;
     cursor: pointer;
     text-align: left;
     color: var(--text-primary);
     font-family: 'Syne', sans-serif;
     font-size: 0.95rem;
     font-weight: 500;
     line-height: 1.5;
     transition: color 0.2s;
 }

 .faq-question:hover {
     color: var(--accent-teal);
 }

 .faq-toggle {
     width: 24px;
     height: 24px;
     min-width: 24px;
     border-radius: 50%;
     background: var(--accent-teal-dim);
     border: 1px solid rgba(0, 198, 184, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s, background 0.3s;
     font-size: 14px;
     color: var(--accent-teal);
 }

 .faq-item.open .faq-toggle {
     transform: rotate(45deg);
     background: var(--accent-teal);
     color: #fff;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease;
 }

 .faq-item.open .faq-answer {
     max-height: 200px;
 }

 .faq-answer-inner {
     padding: 0 28px 24px;
     font-size: 0.9rem;
     color: var(--text-secondary);
     line-height: 1.75;
     border-top: 1px solid var(--border-subtle);
     padding-top: 16px;
 }

 /* ─── CTA BAND ─── */
 .cta-band {
     background: var(--bg-primary);
     padding: 80px 5%;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-band::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 198, 184, 0.06) 0%, transparent 70%);
 }

 .cta-band-inner {
     position: relative;
     z-index: 1;
     max-width: 640px;
     margin: 0 auto;
 }

 .cta-band h2 {
     font-family: 'Syne', sans-serif;
     font-weight: 800;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: var(--text-primary);
     margin-bottom: 16px;
     line-height: 1.2;
 }

 .cta-band p {
     color: var(--text-secondary);
     margin-bottom: 36px;
     font-size: 1rem;
 }


 /* ─── RESPONSIVE ─── */
 @media (max-width: 1370px) {
     .hero {
         padding: 50px 5% 80px;
     }
 }

 @media (max-width: 900px) {

     .industries-layout,
     .integrations-layout,
     .faq-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .process-steps {
         grid-template-columns: repeat(2, 1fr);
         gap: 32px;
     }

     .process-steps::before {
         display: none;
     }

     .hero-stats {
         gap: 28px;
         flex-wrap: wrap;
     }
 }

 @media (max-width: 600px) {
     .features-grid {
         grid-template-columns: 1fr;
     }

     .process-steps {
         grid-template-columns: 1fr;
     }

     .hero {
         padding: 20px 5% 20px;
     }

     .hero-desc {
         line-height: normal;
         margin-bottom: 20px;
     }
 }