@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #535367;
            background: #FFFFFF;
        }
.text-center {
            text-align: center;
            margin-bottom: 4rem;
        }

        .main-heading {
            font-size: 4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .sub-heading {
            font-size: 1.25rem;
            color: #666;
            font-weight: 400;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.5rem;
            }
            .sub-heading {
                font-size: 1rem;
            }
        }

        .logo-carousel {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .logo-column {
            position: relative;
            height: 3.5rem;
            width: 6rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 0.5s ease-out forwards;
        }

        @media (min-width: 768px) {
            .logo-column {
                height: 6rem;
                width: 12rem;
            }
        }

        .logo-column:nth-child(1) { animation-delay: 0s; }
        .logo-column:nth-child(2) { animation-delay: 0.1s; }
        .logo-column:nth-child(3) { animation-delay: 0.2s; }

        .logo-item {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(10%);
            filter: blur(8px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-item.active {
            opacity: 1;
            transform: translateY(0%);
            filter: blur(0px);
        }

        .logo-item.exiting {
            opacity: 0;
            transform: translateY(-20%);
            filter: blur(6px);
            transition: all 0.3s ease-in;
        }

        .logo-img {
            height: 5rem;
            width: 5rem;
            max-height: 80%;
            max-width: 80%;
            object-fit: contain;
        }

        @media (min-width: 768px) {
            .logo-img {
                height: 8rem;
                width: 8rem;
            }
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gradient-bg {
            background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
	table.comparison-table tr td:nth-child(3) {
		font-weight: 600;
		color: #667EEA;
	}

        /* Hero Section with Clear Separation */
        .hero-section {
            background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
            padding: 6rem 1rem 8rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: white;
            clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
        }

        /* Pulsating Phone Icon Animation */
        .pulse-wrapper {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto;
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border: 3px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            opacity: 0;
            animation: pulse 2.5s ease-out infinite;
        }

        .pulse-ring:nth-child(2) {
            animation-delay: 0.8s;
        }

        .pulse-ring:nth-child(3) {
            animation-delay: 1.6s;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        .phone-icon-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        /* Section Styling */
        .content-section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #24242D;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #535367;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Flow Cards with Visual Connection */
        .flow-container {
            display: grid;
            gap: 2rem;
            position: relative;
        }

        .flow-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #E3E3E3;
            position: relative;
            transition: all 0.3s ease;
        }

        /*.flow-card::before {
            content: '';
            position: absolute;
            top: -2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 2rem;
            background: linear-gradient(to bottom, transparent, #667EEA);
        }*/

        .flow-card:first-child::before {
            display: none;
        }

        .flow-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
            border-color: #667EEA;
        }

        .flow-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #24242D;
            margin-bottom: 1rem;
        }

        .flow-description {
            color: #535367;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .flow-outcome {
            background: #ECEEFD;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #667EEA;
        }

        .flow-outcome strong {
            color: #24242D;
            font-weight: 600;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .comparison-table th {
            background: #24242D;
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #E3E3E3;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tbody tr:hover {
            background: #F9FAFB;
        }

        .check-icon {
            color: #10B981;
            font-weight: bold;
        }

        .cross-icon {
            color: #EF4444;
            font-weight: bold;
        }

        /* Feature Grid - 2x3 Layout */
        .feature-grid {
            width: 100%;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #E3E3E3;
            transition: all 0.3s ease;
            width: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-white {
            background: white;
            color: #667EEA;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        /* Competitive Edge Box */
        .competitive-edge-box {
            background: #FFF9F0;
            border: 2px solid #F59E0B;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .competitive-edge-box h3 {
            color: #24242D;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .competitive-edge-box p {
            color: #535367;
            line-height: 1.6;
        }

        /* Scenario Card */
        .scenario-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #667EEA;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .scenario-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #24242D;
            margin-bottom: 0.75rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
            color: white;
            /*border-radius: 20px;*/
            padding: 3rem 2rem;
            text-align: center;
            /*margin: 4rem 0;*/
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Integration Card */
        .integration-card {
            background: linear-gradient(135deg, #F9FAFB 0%, #ECEEFD 100%);
            border: 1px solid #E3E3E3;
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        /* Navigation */
        nav {
            background: white;
            border-bottom: 1px solid #E3E3E3;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .nav-links {
            display: none;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #535367;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #667EEA;
        }

        /* Responsive Design - Mobile First */
        @media (min-width: 768px) {
            .hero-section {
                padding: 8rem 2rem 10rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .content-section {
                padding: 5rem 2rem;
            }

            .nav-links {
                display: flex;
            }

            .flow-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .feature-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .intro-grid {
                grid-template-columns: 1fr 1fr;
                display: grid;
                gap: 3rem;
                align-items: center;
            }
            
            .intro-image {
                order: 1 !important;
            }
            
            .intro-text {
                order: 2 !important;
            }
        }

        @media (min-width: 1024px) {
            .hero-section {
                padding: 10rem 2rem 12rem;
            }

            .section-title {
                font-size: 3rem;
            }

            .feature-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

/* SVG ANIMATION */
.wisecall-animation-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #09090b;
            color: #fafafa;
            display: flex;
            justify-content: center;
            align-items: center;
            /*min-height: 100vh;*/
            padding: 20px;
        }

        .wisecall-animation-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .wisecall-svg-container {
            width: 100%;
            height: 100%;
            color: #71717a;
        }

        .wisecall-main-box-wrapper {
            position: absolute;
            bottom: 40px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .wisecall-bottom-shadow {
            position: absolute;
            bottom: -16px;
            height: 100px;
            width: 62%;
            border-radius: 8px;
            background: rgba(228, 228, 231, 0.3);
            filter: blur(20px);
        }

        .wisecall-box-title {
            position: absolute;
            top: -12px;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid #27272a;
            background: #101112;
            padding: 6px 8px;
            font-size: 10px;
        }

        .wisecall-sparkle-icon {
            width: 12px;
            height: 12px;
            margin-right: 8px;
        }

        .wisecall-outer-circle {
            position: absolute;
            bottom: -32px;
            z-index: 30;
            display: grid;
            place-items: center;
            height: 60px;
            width: 60px;
            border-radius: 50%;
            border-top: 1px solid #27272a;
            background: #141516;
            font-weight: 600;
            font-size: 11px;
            text-align: center;
            padding: 4px;
            line-height: 1.2;
        }

        .wisecall-main-box {
            position: relative;
            z-index: 10;
            display: flex;
            height: 150px;
            width: 100%;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #27272a;
            background: #09090b;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .wisecall-badge {
            position: absolute;
            z-index: 10;
            height: 28px;
            border-radius: 9999px;
            background: #101112;
            padding: 0 12px;
            font-size: 12px;
            border: 1px solid #27272a;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wisecall-badge-left {
            bottom: 32px;
            left: 48px;
        }

        .wisecall-badge-right {
            right: 64px;
            top: 50%;
            transform: translateY(-50%);
        }

        .wisecall-badge-icon {
            width: 16px;
            height: 16px;
        }

        .wisecall-ripple-circle {
            position: absolute;
            border-radius: 50%;
            border-top: 1px solid #27272a;
            background: rgba(228, 228, 231, 0.05);
        }

        .wisecall-ripple-1 {
            bottom: -56px;
            height: 100px;
            width: 100px;
            animation: wisecall-ripple-1 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .wisecall-ripple-2 {
            bottom: -80px;
            height: 145px;
            width: 145px;
            animation: wisecall-ripple-2 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .wisecall-ripple-3 {
            bottom: -100px;
            height: 190px;
            width: 190px;
            animation: wisecall-ripple-3 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .wisecall-ripple-4 {
            bottom: -120px;
            height: 235px;
            width: 235px;
            animation: wisecall-ripple-4 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes wisecall-ripple-1 {
            0%, 100% { transform: scale(0.98); }
            11.1% { transform: scale(1.02); }
            22.2% { transform: scale(0.98); }
            33.3%, 100% { transform: scale(1); }
        }

        @keyframes wisecall-ripple-2 {
            0%, 33.3% { transform: scale(1); }
            44.4% { transform: scale(0.98); }
            55.5% { transform: scale(1.02); }
            66.6% { transform: scale(0.98); }
            77.7%, 100% { transform: scale(1); }
        }

        @keyframes wisecall-ripple-3 {
            0%, 55.5% { transform: scale(1); }
            66.6% { transform: scale(0.98); }
            77.7% { transform: scale(1.02); }
            88.8% { transform: scale(0.98); }
            100% { transform: scale(1); }
        }

        @keyframes wisecall-ripple-4 {
            0%, 77.7% { transform: scale(1); }
            88.8% { transform: scale(0.98); }
            100% { transform: scale(1.02); }
        }

        .wisecall-database-light {
            offset-anchor: 10px 0px;
            animation: wisecall-database-animation-path 4s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation-delay: 1s;
        }

        .wisecall-db-light-1 {
            offset-path: path("M 31 10 v 15 q 0 5 5 5 h 59 q 5 0 5 5 v 25");
        }

        .wisecall-db-light-2 {
            offset-path: path("M 77 10 v 10 q 0 5 5 5 h 13 q 5 0 5 5 v 25");
        }

        .wisecall-db-light-3 {
            offset-path: path("M 124 10 v 10 q 0 5 -5 5 h -14 q -5 0 -5 5 v 25");
        }

        .wisecall-db-light-4 {
            offset-path: path("M 170 10 v 15 q 0 5 -5 5 h -60 q -5 0 -5 5 v 25");
        }

        @keyframes wisecall-database-animation-path {
            0% { offset-distance: 0%; }
            100% { offset-distance: 100%; }
        }

        @media (max-width: 640px) {
            .wisecall-badge-right {
                display: none;
            }
            .wisecall-box-title {
                top: -14px;
                padding: 4px 8px;
            }
        }
	.integration-capsule {padding: 0.75rem 1.5rem; background: white; border: 1px solid #E3E3E3; border-radius: 8px; font-weight: 500; color: #24242D; box-shadow: 0 2px 4px rgba(0,0,0,0.05); display:flex; gap:0.3rem;}
	.integration-capsule img {max-width: 24px;}
    .hero-container {max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;}
    .subh-subtitle {background: rgba(255, 255, 255, 0.2); color: white; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; display: inline-block; backdrop-filter: blur(10px);}
    .subh-title {text-align: center; font-size: 2rem; font-weight: 700; color: white; margin-bottom: 3rem; line-height: 1.2; padding: 0 1rem;}
    .content-grid-wrap {display: grid; gap: 3rem; align-items: center;}
    .intro-text p {font-size: 1.125rem; line-height: 1.8; color: #535367; margin-bottom: 1.5rem;}
    .intro-feature-wrap {display: flex; flex-direction: column; gap: 1rem;}
    .intro-feature-row {display: flex; align-items: center; gap: 0.5rem;}
    .intro-check {color: #10B981; font-size: 1.5rem;}
    .intro-feature-text {font-weight: 600; color: #24242D;}
    .eof-section {padding: 4rem 1rem; background: #F9FAFB;}
    .eof-wrap {max-width: 1200px; margin: 0 auto;}
    .comparison-table.our-solution td:nth-child(1) {font-weight: 600; color: #24242D;}
    .ultraCon-section {padding: 4rem 2rem; background: #F9FAFB;}
    .ultraCon-wrap {max-width: 1200px; margin: 0 auto;}
    .uc-flowCard-wrap {display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;}
    .uc-flowCard-wrap h3 {font-size: 1.25rem; font-weight: 600; color: #24242D; margin-bottom: 0.75rem;}
    .uc-flowCard-wrap p {color: #535367; line-height: 1.6;}
    .comp-edge {list-style: none; padding: 0; max-width: 800px; margin: 0 auto;}
    ul.comp-edge li {padding: 1rem 0; border-bottom: 1px solid #E3E3E3; display: flex; align-items: baseline; gap: 1rem; font-size: 1.125rem;
    line-height: 1.6;}
    ul.comp-edge li:before {content: '• ' ;color: #667EEA; font-size: 1.5rem; flex-shrink: 0;}
    .comp-bullet-text {font-size: 1.125rem; line-height: 1.6;}
    .comparison-table.competitors td:nth-child(1) {font-weight: 600; color: #24242D;}
    footer {background: #24242D; color: white; padding: 3rem 1rem 2rem;}
    ul.footer-links {list-style: none; padding: 0; color: #9CA3AF;}
    ul.footer-links li {margin-bottom: 0.5rem;}
    .footer-wrap {display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem;}
    .footer-wrap h4 {font-weight: 600; margin-bottom: 1rem;}
    .footer-container {max-width: 1200px; margin: 0 auto;}
    .cright {border-top: 1px solid #374151; padding-top: 2rem; text-align: center; color: #9CA3AF;}
    .snrio-section {padding: 4rem 1rem; background: #F9FAFB;}
    .snrio-wrap {max-width: 1200px; margin: 0 auto;}
    .snrio-card-wrap {max-width: 900px; margin: 0 auto;}
    .scenario-card p {color: #535367; line-height: 1.6; margin-bottom: 1rem;}
    .scenario-card .outcome {background: #ECEEFD; padding: 0.75rem 1rem; border-radius: 6px;}\
    .outcome strong {color: #24242D;}
    .outcome span {color: #535367;}
    .comparison-table.competitors td:nth-child(2):before {content: '✗ '; color: #EF4444; font-weight: bold;}
    .comparison-table.competitors td:nth-child(3):before {content: '✓ '; color: #10B981; font-weight: bold;}
    .ft-divider { margin: 15px 0 25px; background-color: #31313a; height: 1px; }

/* footer industries compact grid */
.footer-industries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-industry-group h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-industry-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2; /* compact multi-column within group when room */
  column-gap: 16px;
}

.footer-industry-group li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.footer-industry-group a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
}

.footer-industry-group a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .footer-industries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .footer-industries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-industries {
    gap: 16px;
  }
  .uc-flowCard-wrap {grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 2rem;}
}

@media (max-width: 640px) {
  .footer-industry-group ul {
    columns: 1;
  }
}

/* Industries Mega Menu Styles */
.mega-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 64px; /* below fixed nav */
  width: min(1100px, calc(100% - 2rem));
  z-index: 60;
  display: block;
}

.mega-menu.hidden {
  display: none;
}

.mega-inner {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 28px;
}

.mega-heading {
  color: #10b98100; /* keep spacing reserved if themed later */
  color: #6366f1;
  font-weight: 700;
  font-size: 20px;
  margin: 4px 4px 20px 4px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 20px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mega-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #e3e3e3;
}

.mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0e7ff; /* light primary tint */
  flex-shrink: 0;
}

.mega-icon svg {
  width: 26px;
  height: 26px;
}

.mega-content {
  display: flex;
  flex-direction: column;
}

.mega-title {
  color: #24242d;
  font-weight: 600;
  line-height: 1.2;
}

.mega-desc {
  color: #535367;
  font-size: 14px;
  line-height: 1.4;
}

.mega-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.mega-view-more {
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
}

.mega-view-more:hover {
  text-decoration: underline;
}

/* Responsive behavior */
@media (max-width: 1024px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mega-menu {
    display: none !important;
  }
  .mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0; /* ensure it can scroll to the bottom */
    z-index: 70;
    padding: 12px;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  body.menu-open {
    overflow: hidden;
  } /* lock background scroll when open */
  .mobile-menu-inner {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 16px;
  }
  .mobile-top-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-link {
    display: block;
    padding: 12px 10px;
    color: #24242d;
    text-decoration: none;
    border-radius: 10px;
  }
  .mobile-link:hover {
    background: #f7f7fb;
  }
  .mobile-collapsible {
    margin-top: 4px;
  }
  .mobile-collapsible-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    background: #f7f7fb;
    border-radius: 10px;
    color: #24242d;
  }
  .collapse-arrow {
    transition: transform .2s ease;
  }
  .collapse-open .collapse-arrow {
    transform: rotate(180deg);
  }
  .mobile-sublist {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
  }
  ul.mobile-sublist li {margin-bottom: 4px}
  .mobile-sublink {
    display: block;
    padding: 10px 12px 10px 14px;
    color: #535367;
    text-decoration: none;
    border-radius: 8px;
  }
  .mobile-sublink:hover {
    background: #f7f7fb;
    color: #24242d;
  }
  .mobile-sub-footer {
    padding: 8px 12px 0 14px;
  }
  .mobile-view-more {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-view-more:hover {
    text-decoration: underline;
  }
  .mobile-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
  }
  .btn-outline {
    border: 1px solid #6366f1;
    color: #6366f1;
    border-radius: 10px;
    padding: 10px 12px;
    text-decoration: none;
  }
  .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    text-decoration: none;
  }

  .mobile-industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 16px;
    text-decoration: none;
  }
  .mobile-industry-item:hover {
    background: #f9fafb;
  }
  .mobile-industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e0e7ff; /* light primary tint */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-industry-icon svg {
    width: 22px;
    height: 22px;
  }
  .mobile-industry-content {
    display: flex;
    flex-direction: column;
  }
  .mobile-industry-title {
    color: #242427;
    font-weight: 600;
    line-height: 1.2;
  }
  .mobile-industry-desc {
    color: #535367;
    font-size: 13px;
    line-height: 1.3;
  }
}