.elementor-14 .elementor-element.elementor-element-afc435c{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-afc435c *//* ============================================
   BizNext Complete Landing Page CSS
   Scale: Figma Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

/* Reset & Variables */
:root {
    /* Colors - Gradient Blue */
    --primary-blue: #0066FF;
    --secondary-blue: #00AEEF;
    --dark-blue: #0052CC;
    
    /* Neutrals */
    --black: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    
    /* Spacing Scale (Figma 8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;
    
    /* Typography Scale */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 30px;
    --font-4xl: 36px;
    --font-5xl: 48px;
    --font-6xl: 60px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 88px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--gray-900);
    font-size: var(--font-base);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Navbar - Height: 72px
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--container-padding);
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    justify-self: start;
}

.logo img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.logo-text {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--space-4);
    justify-self: center;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: var(--font-base);
    font-weight: 500;
    transition: color 0.2s;
    padding: var(--space-1) 0;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: var(--font-base);
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    justify-self: end;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-1);
    justify-self: end;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    font-size: var(--font-sm);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-blue);
    font-size: var(--font-sm);
}

.btn-outline:hover {
    background: var(--gray-100);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 2px solid var(--white);
    font-size: var(--font-sm);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 14px 28px;
    font-size: var(--font-base);
}

/* ============================================
   Hero Section - Padding: 80px top, 120px bottom
   ============================================ */

.hero {
    padding: var(--space-10) 0 var(--space-16);
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
}

.hero-title {
    font-size: var(--font-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: var(--space-3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-lg);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.hero-buttons {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-300);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-sm);
    color: var(--gray-600);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* ============================================
   Trust Section - Height: 120px
   ============================================ */

.trust {
    padding: var(--space-6) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-title {
    text-align: center;
    font-size: var(--font-sm);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-logo {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--gray-500);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.trust-logo:hover {
    opacity: 1;
}

/* ============================================
   Section Header
   ============================================ */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.page-hero {
    padding: var(--space-12) 0 var(--space-8);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    border-radius: var(--radius-full);
    background: rgba(0, 102, 255, 0.12);
    color: var(--primary-blue);
    font-size: var(--font-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}

.page-title {
    font-size: var(--font-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-3);
}

.page-description {
    font-size: var(--font-lg);
    color: var(--gray-600);
    line-height: 1.7;
}


.pricing-section {
    padding: var(--space-12) 0;
    background: var(--gray-100);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: var(--font-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: var(--font-xl);
    font-weight: 800;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: var(--font-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: var(--space-4);
}

.pricing-price .price {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-price .period {
    font-size: var(--font-sm);
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: var(--space-5);
}

.pricing-features li {
    font-size: var(--font-sm);
    color: var(--gray-700);
    padding-left: 22px;
    position: relative;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: rgba(0, 102, 255, 0.16);
    box-shadow: inset 0 0 0 2px rgba(0, 102, 255, 0.32);
}

.faq-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-2);
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
}

.faq-question h3 {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--gray-900);
}

.faq-answer {
    padding: 0 var(--space-4) var(--space-4);
    color: var(--gray-600);
    font-size: var(--font-sm);
    line-height: 1.75;
}

.faq-answer ul {
    padding-left: 18px;
    margin-top: 10px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: var(--font-4xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-2);
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   Solution Section - Padding: 80px
   ============================================ */

.solution {
    padding: var(--space-10) 0;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.solution-card {
    padding: var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.solution-title {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.solution-desc {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: var(--gray-600);
}

/* ============================================
   Showcase Section
   ============================================ */

.showcase {
    padding: var(--space-6) 0 var(--space-10);
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: var(--white);
}

.showcase-overlay h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.showcase-overlay p {
    font-size: var(--font-sm);
    opacity: 0.9;
}

/* ============================================
   Products Section - Padding: 80px
   ============================================ */

.products {
    padding: var(--space-10) 0;
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--gray-400);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--space-4);
}

.product-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.product-title {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.product-desc {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.product-features {
    list-style: none;
}

.product-features li {
    font-size: var(--font-sm);
    color: var(--gray-700);
    padding: var(--space-1) 0;
    padding-left: var(--space-3);
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: var(--font-base);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: var(--space-10) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.testimonial-card {
    padding: var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: #FFC107;
    font-size: var(--font-lg);
    margin-bottom: var(--space-2);
}

.testimonial-text {
    font-size: var(--font-base);
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: var(--space-3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding-top: var(--space-3);
    border-top: 1px solid var(--gray-200);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--gray-900);
}

.author-role {
    font-size: var(--font-xs);
    color: var(--gray-600);
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-4xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.cta-subtitle {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.cta-note {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-8) 0 var(--space-4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.footer-logo img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.footer-logo span {
    font-size: var(--font-xl);
    font-weight: 700;
}

.footer-desc {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
}

.social-links {
    display: flex;
    gap: var(--space-2);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-col h4 {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: var(--font-sm);
    color: var(--white);
    text-decoration: none;
    margin-bottom: var(--space-2);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: var(--space-3);
}

.footer-links a {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-grid--biznext {
    grid-template-columns: 1.2fr 1.2fr 1.3fr 0.9fr;
}

.footer-operated-title {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-operated-logo {
    width: 110px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-text {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text > div {
    margin-bottom: 8px;
}

.footer-col--links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-list a {
    display: block;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-link-list a:hover {
    color: var(--white);
}

.footer-contact-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.footer-contact-btn {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
}

.footer-contact-btn:hover {
    background: var(--primary-blue);
}

.footer-contact-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(15, 23, 42, 0.72);
    z-index: 2000;
    padding: 24px;
}

.modal-overlay.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    width: min(1100px, 100%);
    height: min(92vh, 900px);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.modal-body {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.modal-close:hover {
    background: var(--gray-100);
}

.page-view {
    display: none;
}

.page-view.is-active {
    display: block;
}

.categories-filter {
    padding: var(--space-4) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: var(--font-sm);
    font-weight: 600;
}

.filter-btn:hover {
    background: var(--gray-200);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-color: transparent;
}

.featured-news {
    padding: var(--space-10) 0;
    background: var(--white);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-6);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.featured-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: var(--radius-full);
    background: rgba(0, 102, 255, 0.12);
    color: var(--primary-blue);
    font-size: var(--font-xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-3);
    width: fit-content;
}

.news-category.featured {
    background: rgba(0, 102, 255, 0.12);
}

.news-category.business {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
}

.news-category.tech {
    background: rgba(99, 102, 241, 0.14);
    color: #3730A3;
}

.news-category.finance {
    background: rgba(245, 158, 11, 0.16);
    color: #92400E;
}

.featured-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.featured-excerpt {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-4);
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-author img {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    object-fit: cover;
}

.author-name {
    font-weight: 800;
    color: var(--gray-900);
}

.author-role {
    font-size: var(--font-sm);
    color: var(--gray-600);
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm);
    color: var(--gray-600);
    white-space: nowrap;
}

.latest-news {
    padding: var(--space-12) 0;
    background: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.news-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    font-size: var(--font-xs);
    font-weight: 800;
    border-radius: var(--radius-full);
    padding: 6px 10px;
    letter-spacing: 0.04em;
}

.news-content {
    padding: var(--space-4);
}

.news-title {
    font-size: var(--font-xl);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--gray-600);
    font-size: var(--font-sm);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    font-size: var(--font-sm);
    color: var(--gray-600);
}

.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.meta-read {
    white-space: nowrap;
}

.load-more {
    display: flex;
    justify-content: center;
    margin-top: var(--space-6);
}

.newsletter-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.newsletter-content {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.newsletter-text {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-4);
}

.newsletter-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-desc {
    color: var(--gray-600);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    height: 52px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-300);
    padding: 0 16px;
    font-size: var(--font-base);
    outline: none;
}

.newsletter-input:focus {
    border-color: rgba(0, 102, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.newsletter-note {
    margin-top: var(--space-3);
    text-align: center;
    font-size: var(--font-sm);
    color: var(--gray-600);
}


/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .hero-image {
        order: -1;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }


    .pricing-grid {
        grid-template-columns: 1fr;
    }


 
}

@media (max-width: 768px) {
    .nav-wrapper {
        grid-template-columns: 1fr auto;
        padding: 0 var(--container-padding);
    }

    .logo {
        grid-column: 1;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        grid-column: 2;
    }
    
    .hero-title {
        font-size: var(--font-4xl);
    }
    
    .section-title {
        font-size: var(--font-3xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto var(--space-3);
    }



 
}

@media (max-width: 640px) {
    :root {
        --container-padding: 16px;
    }

    .modal-overlay {
        padding: 0;
    }

    .modal-dialog {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .page-hero {
        padding: var(--space-6) 0 var(--space-10);
    }

    .page-title {
        font-size: var(--font-3xl);
    }
    
    .hero {
        padding: var(--space-6) 0 var(--space-10);
    }
    
    .hero-title {
        font-size: var(--font-3xl);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .section-title {
        font-size: var(--font-2xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .service-stats {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

 
}/* End custom CSS */