:root {
      --bg-light: #f7f7f9;
      --bg-card: #ffffff;
      --text-main: #222222;
      --text-muted: #555555;
      --accent: #0066cc;
      --accent-dark: #004a96;
      --border-soft: #e1e1e6;
      --shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.06);
      --radius-lg: 12px;
      --radius-pill: 999px;
      --max-width: 1120px;
    }
       
       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0px auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1rem;
            font-weight: 700;
            color: #1e40af;
            cursor: pointer;
            padding-top: 5px;
        }
        
        .logo img {
            height: 75px;   /* adjust as needed */
            width: auto;
            cursor: pointer;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .nav-links a:hover {
            color: #1e40af;
        }
        
        .cta-btn {
            background: #1e40af;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .cta-btn:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            margin-top: 80px;
        }
        
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero .subtitle {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .hero .supporting-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .btn-primary {
            background: #f97316;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: #ea580c;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: white;
            color: #1e40af;
        }
        
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            opacity: 0.8;
        }
        
        .trust-item {
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #64748b;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        
        .service-card p {
            color: #64748b;
            margin-bottom: 1.5rem;
        }
        
        .learn-more {
            color: #1e40af;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
            cursor: pointer;
        }
        
        .learn-more:hover {
            border-bottom-color: #1e40af;
        }
        
        /* Service Detail Pages */
        .service-hero {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .service-hero.digital {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        }
        
        .service-hero.industry {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        }
        
        .service-hero.enterprise {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        }
        
        .service-hero.data-ai {
            background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
        }
        
        .service-hero.cloud {
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
        }
        
        .service-content {
            padding: 80px 0;
        }
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #1e40af;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: color 0.3s;
			cursor: pointer;
        }
        
        .back-btn:hover {
            color: #1e3a8a;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .overview-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        
        .overview-text p {
            color: #64748b;
            margin-bottom: 1rem;
        }
        
        .benefits-list {
            list-style: none;
        }
        
        .benefits-list li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
            color: #64748b;
        }
        
        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }
        
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .capability-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 4px solid #1e40af;
        }
        
        .capability-card h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        
        .process-section {
            background: #f8fafc;
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: 20px;
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .process-step {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: #1e40af;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
        }
        
        .technologies {
            background: #1e293b;
            color: white;
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: 20px;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .tech-item {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .tech-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        /* Industries Section */
        .industries {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .industries::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
        }
        
        .industries-content {
            position: relative;
            z-index: 2;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .industry-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .industry-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }
        
        .industry-services {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }
        
        .industry-services li {
            color: #cbd5e1;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .industry-services li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #06b6d4;
            font-weight: bold;
        }
        
        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .advantage-card {
            text-align: center;
            padding: 1.5rem;
        }
        
        .advantage-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #06b6d4;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .footer-section ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .company-info {
            max-width: 300px;
        }
        
        .company-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #06b6d4;
            margin-bottom: 1rem;
        }
        
        .company-description {
            color: #cbd5e1;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background: #06b6d4;
            transform: translateY(-3px);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            color: #cbd5e1;
        }
        
        .contact-details li::before {
            content: attr(data-icon);
            margin-right: 10px;
            color: #06b6d4;
            font-size: 1.1rem;
            width: 20px;
        }
        
        .quick-contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .quick-form-group {
            margin-bottom: 1rem;
        }
        
        .quick-form-group input,
        .quick-form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.9rem;
        }
        
        .quick-form-group input::placeholder,
        .quick-form-group textarea::placeholder {
            color: #94a3b8;
        }
        
        .quick-form-group input:focus,
        .quick-form-group textarea:focus {
            outline: none;
            border-color: #06b6d4;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .quick-submit-btn {
            background: #06b6d4;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .quick-submit-btn:hover {
            background: #0891b2;
        }
				
		        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #9ca3af;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .service-overview {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .trust-indicators {
                flex-direction: column;
                gap: 1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .company-info {
                max-width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
		
		/* Contact Form Layout */
		.contact-form {
			display: flex;
			flex-direction: column;
			gap: 1rem;
			margin-top: 1rem;
		}

		/* Row for name + email */
		.contact-form-row {
			display: flex;
			gap: 1rem;
		}

		.contact-form-row input {
			flex: 1;
		}

		/* Inputs and textarea */
		.contact-form input,
		.contact-form textarea {
			width: 100%;
			padding: 0.9rem 1rem;
			border: 1px solid #ddd;
			border-radius: 8px;
			font-size: 1rem;
			transition: border-color 0.3s, box-shadow 0.3s;
		}

		.contact-form input:focus,
		.contact-form textarea:focus {
			outline: none;
			border-color: #2563eb;
			box-shadow: 0 0 6px rgba(37, 99, 235, 0.25);
		}

		/* Submit Button */
		.contact-submit-btn {
			background: #2563eb;
			color: #fff;
			border: none;
			padding: 0.9rem 1.2rem;
			border-radius: 8px;
			font-size: 1rem;
			cursor: pointer;
			transition: background 0.3s;
			align-self: flex-start;
		}

		.contact-submit-btn:hover {
			background: #1d4ed8;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.contact-form-row {
				flex-direction: column;
			}
		}
		
		
		/* =========================
   Dropdown (Services)
========================= */
.nav-links li {
  position: relative;
}

.has-submenu > a::after {
  content: " ▾";
  font-size: 0.8em;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  list-style: none;
  padding: 0.5rem 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: none;
  z-index: 3000;
}

.has-submenu:hover > .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: #111;
  text-decoration: none;
  white-space: normal; /* allow wrapping for long service names */
  line-height: 1.25;
}

.submenu li a:hover {
  background: #f4f4f4;
}


/* =========================
   Mobile Header Menu (Toggle)
   Uses: body.nav-open
========================= */
@media (max-width: 768px) {

  /* Make nav row wrap nicely */
    nav.container { position: relative; }

  /* Hide CTA on top row (optional, but cleaner on small screens) */
  .cta-btn {
    display: none;
  }

  /* When menu is open, show it as a dropdown panel */
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
    z-index: 4000;
  }

  body.nav-open .nav-links li a {
    display: block;
    padding: 0.9rem 1rem;
  }

  /* Submenu in mobile: show inline (no hover on touch) */
  .submenu {
    position: static;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    display: none;
  }

  /* Open submenu when parent li has .submenu-open */
  .has-submenu.submenu-open > .submenu {
    display: block;
  }

  .submenu li a {
    padding-left: 2rem;
  }

  /* Hamburger -> X animation when nav is open */
  body.nav-open .mobile-menu span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.nav-open .mobile-menu span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-menu span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


/* =========================
   APPLICA + Evolvance CSS
========================= */

.page-wrapper {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 32px 16px 56px;
    }

    header.hero {
      text-align: left;
      margin-bottom: 40px;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 8px;
    }

    header.hero h1 {
      font-size: 2rem;
      margin: 0 0 12px;
    }

    header.hero p {
      margin: 0 0 20px;
      color: var(--text-muted);
      max-width: 640px;
    }

    .hero-cta {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }


    section {
      margin-bottom: 40px;
      background-color: transparent;
    }

    section h2 {
      font-size: 1.4rem;
      margin: 0 0 12px;
    }

    section p {
      margin: 0 0 12px;
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
      gap: 24px;
    }

    .card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      padding: 18px 20px;
      box-shadow: var(--shadow-soft);
    }

    .card h3 {
      margin-top: 0;
      margin-bottom: 6px;
      font-size: 1.05rem;
    }

    .muted {
      color: var(--text-muted);
    }

    .badge {
      display: inline-block;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      background: #eef3ff;
      color: var(--accent-dark);
      margin-left: 6px;
      vertical-align: text-top;
    }

    .solutions-grid {
      display: grid;
      gap: 16px;
    }

    .solutions-grid-group {
      border-left: 3px solid var(--accent);
      padding-left: 14px;
      margin-bottom: 12px;
    }

    .solutions-grid-group-title {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .solutions-cards {
      display: grid;
      gap: 12px;
    }

    .solutions-card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      padding: 14px 16px;
    }

    .solutions-card-title {
      font-weight: 600;
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .solutions-card p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .list-columns {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      padding-left: 18px;
      margin: 0;
    }

    .list-columns li {
      margin-bottom: 2px;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0;
      list-style: none;
      margin: 8px 0 0;
    }

    .pill-list li {
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: #ffffff;
      border: 1px solid var(--border-soft);
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .centered {
      text-align: center;
    }

    /*.cta-section {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      padding: 20px 22px;
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    .cta-section h2 {
      margin-bottom: 8px;
    }

    .cta-section p {
      margin-bottom: 16px;
    }*/

    .infographic-wrapper {
      margin-top: 18px;
      text-align: center;
    }

    .infographic-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
    }

    .infographic-caption {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 6px;
    }

    @media (max-width: 900px) {
      .two-column {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (min-width: 720px) {
      .solutions-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .solutions-grid {
        gap: 24px;
      }
    }