/**
 * SV Soft Solutions - Public Website Stylesheet
 * Modern SaaS agency design
 * Color scheme: Primary #00649E, Navy #002033, Purple #6936F5, Cyan #5EBCEF-#1D8DEA, Green #24BC73, Gold #FFD01B
 */

/* ==========================================
   1. CSS Variables
   ========================================== */
:root {
    --ws-primary: #00649E;
    --ws-primary-dark: #004D7A;
    --ws-navy: #002033;
    --ws-navy-light: #003050;
    --ws-purple: #6936F5;
    --ws-cyan-start: #5EBCEF;
    --ws-cyan-end: #1D8DEA;
    --ws-green: #24BC73;
    --ws-gold: #FFD01B;
    --ws-white: #FFFFFF;
    --ws-gray-50: #F8FAFC;
    --ws-gray-100: #F1F5F9;
    --ws-gray-200: #E2E8F0;
    --ws-gray-300: #CBD5E1;
    --ws-gray-400: #94A3B8;
    --ws-gray-500: #64748B;
    --ws-gray-600: #475569;
    --ws-gray-700: #334155;
    --ws-gray-800: #1E293B;
    --ws-gray-900: #0F172A;
    --ws-text: #1E293B;
    --ws-text-light: #64748B;
    --ws-font-heading: 'Poppins', sans-serif;
    --ws-font-body: 'Inter', sans-serif;
    --ws-radius: 12px;
    --ws-radius-lg: 20px;
    --ws-radius-pill: 50px;
    --ws-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --ws-shadow-lg: 0 4px 16px rgba(0,0,0,0.1), 0 12px 40px rgba(0,0,0,0.08);
    --ws-shadow-xl: 0 8px 30px rgba(0,0,0,0.12), 0 20px 60px rgba(0,0,0,0.08);
    --ws-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ws-container: 1200px;
}

/* ==========================================
   2. Reset & Base
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ws-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ws-text);
    background: var(--ws-white);
    overflow-x: hidden;
}

body.ws-menu-active {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ws-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ws-gray-900);
}

a {
    text-decoration: none;
    color: var(--ws-primary);
    transition: color var(--ws-transition);
}

a:hover {
    color: var(--ws-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ==========================================
   3. Utility
   ========================================== */
.ws-container {
    width: 100%;
    max-width: var(--ws-container);
    margin: 0 auto;
    padding: 0 20px;
}

.ws-text-center {
    text-align: center;
}

.ws-section {
    padding: 80px 0;
}

.ws-section-gray {
    background: var(--ws-gray-50);
}

.ws-section-dark {
    background: var(--ws-navy);
}

/* Section Headers */
.ws-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.ws-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ws-primary);
    background: rgba(0, 100, 158, 0.08);
    padding: 6px 16px;
    border-radius: var(--ws-radius-pill);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ws-section-tag-light {
    color: var(--ws-cyan-start);
    background: rgba(94, 188, 239, 0.15);
}

.ws-section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.ws-section-header p {
    font-size: 17px;
    color: var(--ws-text-light);
    line-height: 1.7;
}

/* ==========================================
   4. Buttons
   ========================================== */
.ws-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ws-font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--ws-radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ws-transition);
    text-decoration: none;
    line-height: 1.4;
}

.ws-btn-lg {
    padding: 14px 34px;
    font-size: 16px;
}

.ws-btn-primary {
    background: var(--ws-primary);
    color: var(--ws-white);
    border-color: var(--ws-primary);
}

.ws-btn-primary:hover {
    background: var(--ws-primary-dark);
    border-color: var(--ws-primary-dark);
    color: var(--ws-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 158, 0.35);
}

.ws-btn-outline {
    background: transparent;
    color: var(--ws-primary);
    border-color: var(--ws-primary);
}

.ws-btn-outline:hover {
    background: var(--ws-primary);
    color: var(--ws-white);
    transform: translateY(-2px);
}

.ws-btn-white {
    background: var(--ws-white);
    color: var(--ws-primary);
    border-color: var(--ws-white);
}

.ws-btn-white:hover {
    background: transparent;
    color: var(--ws-white);
    transform: translateY(-2px);
}

.ws-btn-outline-white {
    background: transparent;
    color: var(--ws-white);
    border-color: rgba(255,255,255,0.4);
}

.ws-btn-outline-white:hover {
    background: var(--ws-white);
    color: var(--ws-primary);
    transform: translateY(-2px);
}

.ws-btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   5. Top Bar
   ========================================== */
.ws-topbar {
    background: var(--ws-navy);
    padding: 8px 0;
    font-size: 13px;
    transition: all var(--ws-transition);
}

.ws-topbar-hidden {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
}

.ws-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ws-topbar-left {
    display: flex;
    gap: 24px;
}

.ws-topbar-left a {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.ws-topbar-left a:hover {
    color: var(--ws-white);
}

.ws-topbar-right {
    display: flex;
    gap: 16px;
}

.ws-topbar-right a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color var(--ws-transition);
}

.ws-topbar-right a:hover {
    color: var(--ws-white);
}

/* ==========================================
   6. Header / Navbar
   ========================================== */
.ws-header {
    background: var(--ws-white);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    transition: all var(--ws-transition);
    border-bottom: 1px solid var(--ws-gray-200);
}

.ws-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--ws-shadow-lg);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ws-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ws-logo img {
    height: 44px;
    width: auto;
}

.ws-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ws-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ws-nav-list li a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ws-gray-700);
    border-radius: 8px;
    transition: all var(--ws-transition);
}

.ws-nav-list li a:hover,
.ws-nav-list li.active a {
    color: var(--ws-primary);
    background: rgba(0, 100, 158, 0.06);
}

.ws-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--ws-primary);
    color: var(--ws-white) !important;
    border-radius: var(--ws-radius-pill);
    transition: all var(--ws-transition);
    white-space: nowrap;
}

.ws-header-cta:hover {
    background: var(--ws-primary-dark);
    color: var(--ws-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 100, 158, 0.3);
}

/* Mobile Menu Toggle */
.ws-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.ws-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--ws-gray-700);
    border-radius: 2px;
    transition: all var(--ws-transition);
}

.ws-menu-toggle.ws-menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ws-menu-toggle.ws-menu-open span:nth-child(2) {
    opacity: 0;
}

.ws-menu-toggle.ws-menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.ws-mobile-nav {
    display: none;
    background: var(--ws-white);
    border-top: 1px solid var(--ws-gray-200);
    padding: 16px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ws-mobile-nav-open {
    max-height: 500px;
}

.ws-mobile-nav ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ws-gray-700);
    border-bottom: 1px solid var(--ws-gray-100);
}

.ws-mobile-nav ul li a:hover {
    color: var(--ws-primary);
    background: var(--ws-gray-50);
}

/* ==========================================
   7. Hero Section
   ========================================== */
.ws-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 50%, #f5f0ff 100%);
    overflow: hidden;
}

.ws-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 100, 158, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(105, 54, 245, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(94, 188, 239, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.ws-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.ws-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ws-green);
    background: rgba(36, 188, 115, 0.1);
    padding: 8px 20px;
    border-radius: var(--ws-radius-pill);
    margin-bottom: 24px;
}

.ws-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ws-navy) 0%, var(--ws-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws-hero-sub {
    font-size: 18px;
    color: var(--ws-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ws-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Hero Stats */
.ws-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ws-hero-stat {
    text-align: center;
}

.ws-hero-stat-num {
    display: inline;
    font-family: var(--ws-font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--ws-primary);
}

.ws-hero-stat-plus {
    font-family: var(--ws-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--ws-primary);
}

.ws-hero-stat-label {
    display: block;
    font-size: 14px;
    color: var(--ws-text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================
   8. Google Rating Strip
   ========================================== */
.ws-rating-strip {
    background: var(--ws-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--ws-gray-200);
}

.ws-rating-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ws-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ws-gray-600);
}

.ws-rating-stars {
    display: flex;
    gap: 2px;
    color: var(--ws-gold);
    font-size: 14px;
}

/* ==========================================
   9. Service Cards (Home Grid)
   ========================================== */
.ws-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-service-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 36px 28px;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ws-shadow-xl);
    border-color: transparent;
}

.ws-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ws-white);
    font-size: 24px;
}

.ws-service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.ws-service-card p {
    font-size: 14px;
    color: var(--ws-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ws-service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ws-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ws-service-link i {
    font-size: 12px;
    transition: transform var(--ws-transition);
}

.ws-service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================
   10. Product Cards (Home Grid)
   ========================================== */
.ws-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-product-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ws-shadow-xl);
    border-color: transparent;
}

.ws-product-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ws-cyan-start), var(--ws-cyan-end));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--ws-white);
}

.ws-product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ws-product-card p {
    font-size: 14px;
    color: var(--ws-text-light);
    line-height: 1.6;
}

/* ==========================================
   11. Tech Stack
   ========================================== */
.ws-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ws-tech-category {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 28px;
    border: 1px solid var(--ws-gray-200);
}

.ws-tech-category h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ws-gray-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws-tech-category h4 i {
    color: var(--ws-primary);
}

.ws-tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ws-gray-600);
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--ws-gray-50);
    transition: all var(--ws-transition);
}

.ws-tech-item:hover {
    background: rgba(0, 100, 158, 0.06);
    color: var(--ws-primary);
}

.ws-tech-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: var(--ws-primary);
}

/* ==========================================
   12. Industries
   ========================================== */
.ws-industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ws-industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--ws-radius);
    min-width: 130px;
    transition: all var(--ws-transition);
    cursor: default;
}

.ws-industry-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.ws-industry-item i {
    font-size: 28px;
    color: var(--ws-cyan-start);
}

.ws-industry-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

/* ==========================================
   13. Testimonials
   ========================================== */
.ws-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-testimonial-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 32px;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-testimonial-card:hover {
    box-shadow: var(--ws-shadow-lg);
    border-color: transparent;
}

.ws-testimonial-stars {
    color: var(--ws-gold);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.ws-testimonial-card p {
    font-size: 15px;
    color: var(--ws-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.ws-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ws-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--ws-gray-800);
}

.ws-testimonial-author span {
    font-size: 13px;
    color: var(--ws-text-light);
}

/* ==========================================
   14. Process Steps
   ========================================== */
.ws-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ws-process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-process-num {
    font-family: var(--ws-font-heading);
    font-size: 40px;
    font-weight: 800;
    color: rgba(0, 100, 158, 0.12);
    margin-bottom: 12px;
}

.ws-process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ws-process-step p {
    font-size: 14px;
    color: var(--ws-text-light);
    line-height: 1.6;
}

/* ==========================================
   15. Page Banner
   ========================================== */
.ws-page-banner {
    background: linear-gradient(135deg, var(--ws-navy) 0%, var(--ws-primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.ws-page-banner h1 {
    font-size: 42px;
    color: var(--ws-white);
    margin-bottom: 12px;
}

.ws-page-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}

.ws-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.ws-breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.ws-breadcrumb a:hover {
    color: var(--ws-white);
}

.ws-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ==========================================
   16. Services Detail Page
   ========================================== */
.ws-services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ws-service-detail-card {
    display: flex;
    gap: 32px;
    background: var(--ws-white);
    border-radius: var(--ws-radius-lg);
    padding: 40px;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-service-detail-card:hover {
    box-shadow: var(--ws-shadow-lg);
    border-color: transparent;
}

.ws-service-detail-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-white);
    font-size: 26px;
}

.ws-service-detail-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.ws-service-detail-body p {
    font-size: 15px;
    color: var(--ws-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ws-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ws-service-features li {
    font-size: 14px;
    color: var(--ws-gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws-service-features li i {
    color: var(--ws-green);
    font-size: 13px;
    flex-shrink: 0;
}

/* ==========================================
   17. Products Showcase Page
   ========================================== */
.ws-products-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ws-product-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    background: var(--ws-white);
    border-radius: var(--ws-radius-lg);
    padding: 48px;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-product-showcase-card:hover {
    box-shadow: var(--ws-shadow-lg);
    border-color: transparent;
}

.ws-product-showcase-reverse {
    direction: rtl;
}

.ws-product-showcase-reverse > * {
    direction: ltr;
}

.ws-product-mockup {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--ws-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--ws-white);
}

.ws-product-mockup-food    { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.ws-product-mockup-grocery { background: linear-gradient(135deg, #24BC73, #36D695); }
.ws-product-mockup-taxi    { background: linear-gradient(135deg, #FFD01B, #FFA500); }
.ws-product-mockup-ecom    { background: linear-gradient(135deg, #6936F5, #9B6DFF); }
.ws-product-mockup-health  { background: linear-gradient(135deg, #5EBCEF, #1D8DEA); }
.ws-product-mockup-learn   { background: linear-gradient(135deg, #00649E, #0088D4); }
.ws-product-mockup-realestate { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.ws-product-mockup-ott     { background: linear-gradient(135deg, #EC4899, #F472B6); }
.ws-product-mockup-home    { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ws-product-mockup-bank    { background: linear-gradient(135deg, #002033, #00649E); }

.ws-product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ws-primary);
    background: rgba(0, 100, 158, 0.08);
    padding: 4px 12px;
    border-radius: var(--ws-radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-product-showcase-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.ws-product-showcase-body p {
    font-size: 15px;
    color: var(--ws-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ws-product-features {
    margin-bottom: 24px;
}

.ws-product-features li {
    font-size: 14px;
    color: var(--ws-gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.ws-product-features li i {
    color: var(--ws-green);
    font-size: 14px;
    flex-shrink: 0;
}

/* ==========================================
   18. About Page
   ========================================== */
.ws-about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}

.ws-about-intro-text .ws-section-tag {
    margin-bottom: 12px;
}

.ws-about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ws-about-intro-text p {
    font-size: 15px;
    color: var(--ws-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ws-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ws-about-highlight-card {
    background: var(--ws-gray-50);
    border-radius: var(--ws-radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--ws-gray-200);
}

.ws-about-highlight-icon {
    font-size: 28px;
    color: var(--ws-primary);
    margin-bottom: 12px;
}

.ws-about-highlight-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.ws-about-highlight-card p {
    font-size: 13px;
    color: var(--ws-text-light);
}

/* Stats */
.ws-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.ws-stat-card {
    padding: 32px 16px;
}

.ws-stat-num {
    display: inline;
    font-family: var(--ws-font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--ws-white);
}

.ws-stat-plus {
    display: inline;
    font-family: var(--ws-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--ws-cyan-start);
}

.ws-stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* Mission & Vision */
.ws-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-mv-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 36px;
    border: 1px solid var(--ws-gray-200);
    text-align: center;
    transition: all var(--ws-transition);
}

.ws-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-mv-icon {
    font-size: 36px;
    color: var(--ws-primary);
    margin-bottom: 20px;
}

.ws-mv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.ws-mv-card p {
    font-size: 14px;
    color: var(--ws-text-light);
    line-height: 1.7;
}

/* Why Choose Us */
.ws-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-why-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 32px;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-why-num {
    font-family: var(--ws-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: rgba(0, 100, 158, 0.1);
    margin-bottom: 12px;
}

.ws-why-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.ws-why-card p {
    font-size: 14px;
    color: var(--ws-text-light);
    line-height: 1.6;
}

/* Team */
.ws-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ws-team-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-team-avatar {
    margin-bottom: 16px;
}

.ws-team-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--ws-white);
    font-size: 28px;
}

.ws-team-card h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.ws-team-card > span {
    font-size: 13px;
    color: var(--ws-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.ws-team-card p {
    font-size: 13px;
    color: var(--ws-text-light);
    line-height: 1.6;
}

/* Certifications */
.ws-certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ws-cert-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--ws-gray-200);
}

.ws-cert-card i {
    margin-bottom: 16px;
}

.ws-cert-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.ws-cert-card p {
    font-size: 13px;
    color: var(--ws-text-light);
}

/* ==========================================
   19. Contact Page
   ========================================== */
.ws-contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.ws-contact-form-wrap h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.ws-contact-form-wrap > p {
    font-size: 15px;
    color: var(--ws-text-light);
    margin-bottom: 28px;
}

/* Alert Messages */
.ws-alert {
    padding: 14px 20px;
    border-radius: var(--ws-radius);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-alert-success {
    background: rgba(36, 188, 115, 0.1);
    color: #166534;
    border: 1px solid rgba(36, 188, 115, 0.2);
}

.ws-alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Form Styles */
.ws-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ws-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ws-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ws-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ws-gray-700);
}

.ws-required {
    color: #EF4444;
}

.ws-form-group input,
.ws-form-group select,
.ws-form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--ws-gray-300);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--ws-font-body);
    color: var(--ws-text);
    background: var(--ws-white);
    transition: all var(--ws-transition);
    outline: none;
}

.ws-form-group input:focus,
.ws-form-group select:focus,
.ws-form-group textarea:focus {
    border-color: var(--ws-primary);
    box-shadow: 0 0 0 3px rgba(0, 100, 158, 0.1);
}

.ws-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ws-form-error input,
.ws-form-error select,
.ws-form-error textarea {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Contact Sidebar */
.ws-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ws-contact-info-card,
.ws-contact-office-card,
.ws-contact-hours-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    padding: 28px;
    border: 1px solid var(--ws-gray-200);
}

.ws-contact-info-card h3,
.ws-contact-office-card h3,
.ws-contact-hours-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ws-gray-100);
}

.ws-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
}

.ws-contact-info-item i {
    font-size: 18px;
    color: var(--ws-primary);
    margin-top: 2px;
    width: 22px;
    text-align: center;
}

.ws-contact-info-item strong {
    display: block;
    font-size: 13px;
    color: var(--ws-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.ws-contact-info-item a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ws-gray-800);
}

.ws-contact-info-item a:hover {
    color: var(--ws-primary);
}

/* Office Items */
.ws-office-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--ws-gray-100);
}

.ws-office-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ws-office-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--ws-white);
    background: var(--ws-primary);
    padding: 2px 8px;
    border-radius: var(--ws-radius-pill);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.ws-office-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.ws-office-item p {
    font-size: 13px;
    color: var(--ws-text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.ws-office-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ws-primary);
    margin-right: 16px;
}

/* Business Hours */
.ws-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--ws-gray-100);
}

.ws-hours-item:last-child {
    border-bottom: none;
}

.ws-hours-item span {
    color: var(--ws-text-light);
}

.ws-hours-item strong {
    color: var(--ws-gray-800);
    font-size: 13px;
}

/* Map */
.ws-map-section {
    line-height: 0;
}

.ws-map-section iframe {
    width: 100%;
}

/* ==========================================
   20. Blog Page
   ========================================== */
.ws-blog-coming-soon {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ws-blog-coming-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ws-cyan-start), var(--ws-cyan-end));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
    color: var(--ws-white);
}

.ws-blog-coming-soon h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.ws-blog-coming-soon > p {
    font-size: 16px;
    color: var(--ws-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ws-blog-topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.ws-blog-topic-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ws-primary);
    background: rgba(0, 100, 158, 0.08);
    padding: 6px 16px;
    border-radius: var(--ws-radius-pill);
}

.ws-blog-subscribe {
    background: var(--ws-gray-50);
    border-radius: var(--ws-radius);
    padding: 40px;
    border: 1px solid var(--ws-gray-200);
}

.ws-blog-subscribe h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.ws-blog-subscribe p {
    font-size: 14px;
    color: var(--ws-text-light);
    margin-bottom: 20px;
}

.ws-subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.ws-subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--ws-gray-300);
    border-radius: var(--ws-radius-pill);
    font-size: 14px;
    font-family: var(--ws-font-body);
    outline: none;
    transition: border-color var(--ws-transition);
}

.ws-subscribe-input:focus {
    border-color: var(--ws-primary);
}

/* Blog Preview Cards */
.ws-blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ws-blog-preview-card {
    background: var(--ws-white);
    border-radius: var(--ws-radius);
    overflow: hidden;
    border: 1px solid var(--ws-gray-200);
    transition: all var(--ws-transition);
}

.ws-blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-blog-preview-img {
    height: 180px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.8);
}

.ws-blog-preview-body {
    padding: 24px;
}

.ws-blog-preview-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--ws-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.ws-blog-preview-body h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ws-blog-preview-body p {
    font-size: 13px;
    color: var(--ws-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.ws-blog-preview-meta {
    font-size: 12px;
    color: var(--ws-gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   21. Inline CTA
   ========================================== */
.ws-inline-cta {
    background: var(--ws-white);
    border-radius: var(--ws-radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--ws-gray-200);
    box-shadow: var(--ws-shadow);
}

.ws-inline-cta-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.ws-inline-cta-text p {
    font-size: 15px;
    color: var(--ws-text-light);
    line-height: 1.6;
}

.ws-inline-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================
   22. CTA Banner (Above Footer)
   ========================================== */
.ws-cta-banner {
    background: linear-gradient(135deg, var(--ws-primary) 0%, var(--ws-purple) 100%);
    padding: 64px 0;
}

.ws-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ws-cta-banner-text h2 {
    font-size: 32px;
    color: var(--ws-white);
    margin-bottom: 8px;
}

.ws-cta-banner-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.ws-cta-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================
   23. Footer
   ========================================== */
.ws-footer {
    background: var(--ws-navy);
    padding: 64px 0 0;
    color: rgba(255,255,255,0.8);
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.ws-footer-logo img {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.ws-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.ws-footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ws-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all var(--ws-transition);
}

.ws-footer-social a:hover {
    background: var(--ws-primary);
    color: var(--ws-white);
}

.ws-footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ws-badge-iso,
.ws-badge-google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--ws-radius-pill);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}

.ws-badge-iso i {
    color: var(--ws-green);
}

.ws-badge-google i {
    color: var(--ws-gold);
}

.ws-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ws-white);
    margin-bottom: 20px;
}

.ws-footer-col ul li {
    margin-bottom: 10px;
}

.ws-footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--ws-transition);
}

.ws-footer-col ul li a:hover {
    color: var(--ws-white);
}

/* Footer Offices */
.ws-footer-office {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ws-footer-office:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ws-footer-office h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ws-white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ws-footer-office h5 i {
    color: var(--ws-cyan-start);
    font-size: 12px;
}

.ws-footer-office p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-bottom: 4px;
}

.ws-footer-office a {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ws-footer-office a:hover {
    color: var(--ws-white);
}

/* Footer Bottom */
.ws-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}

.ws-footer-bottom p {
    color: rgba(255,255,255,0.5);
}

.ws-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.ws-footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.ws-footer-bottom-links a:hover {
    color: var(--ws-white);
}

/* ==========================================
   24. WhatsApp Button
   ========================================== */
.ws-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-white) !important;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--ws-transition);
}

.ws-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--ws-white) !important;
}

/* ==========================================
   25. Scroll Reveal Animation
   ========================================== */
.ws-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ws-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid children */
.ws-services-grid .ws-reveal:nth-child(2),
.ws-products-grid .ws-reveal:nth-child(2),
.ws-testimonials-grid .ws-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.ws-services-grid .ws-reveal:nth-child(3),
.ws-products-grid .ws-reveal:nth-child(3),
.ws-testimonials-grid .ws-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.ws-services-grid .ws-reveal:nth-child(4) { transition-delay: 0.15s; }
.ws-services-grid .ws-reveal:nth-child(5) { transition-delay: 0.2s; }
.ws-services-grid .ws-reveal:nth-child(6) { transition-delay: 0.25s; }

/* ==========================================
   26. Responsive Design
   ========================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .ws-container {
        padding: 0 24px;
    }

    .ws-section {
        padding: 60px 0;
    }

    .ws-services-grid,
    .ws-products-grid,
    .ws-testimonials-grid,
    .ws-mv-grid,
    .ws-why-grid,
    .ws-blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-tech-grid,
    .ws-process-grid,
    .ws-stats-grid,
    .ws-team-grid,
    .ws-certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ws-contact-grid {
        grid-template-columns: 1fr;
    }

    .ws-product-showcase-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-product-showcase-reverse {
        direction: ltr;
    }

    .ws-hero h1 {
        font-size: 40px;
    }

    .ws-inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .ws-cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .ws-service-detail-card {
        flex-direction: column;
        gap: 20px;
    }

    .ws-service-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .ws-topbar-left {
        flex-direction: column;
        gap: 4px;
    }

    .ws-topbar-inner {
        flex-direction: column;
        gap: 8px;
    }

    /* Header Mobile */
    .ws-nav {
        display: none;
    }

    .ws-header-cta {
        display: none;
    }

    .ws-menu-toggle {
        display: flex;
    }

    .ws-mobile-nav {
        display: block;
    }

    .ws-logo img {
        height: 36px;
    }

    /* Hero */
    .ws-hero {
        padding: 60px 0;
    }

    .ws-hero h1 {
        font-size: 32px;
    }

    .ws-hero-sub {
        font-size: 15px;
    }

    .ws-hero-stats {
        gap: 24px;
    }

    .ws-hero-stat-num {
        font-size: 32px;
    }

    .ws-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Section headers */
    .ws-section-header h2 {
        font-size: 28px;
    }

    .ws-section {
        padding: 48px 0;
    }

    /* Grids to single column */
    .ws-services-grid,
    .ws-products-grid,
    .ws-testimonials-grid,
    .ws-mv-grid,
    .ws-why-grid,
    .ws-blog-preview-grid,
    .ws-team-grid,
    .ws-certifications-grid {
        grid-template-columns: 1fr;
    }

    .ws-tech-grid,
    .ws-process-grid,
    .ws-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ws-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ws-rating-inner {
        flex-direction: column;
        gap: 16px;
    }

    .ws-page-banner {
        padding: 60px 0 40px;
    }

    .ws-page-banner h1 {
        font-size: 32px;
    }

    .ws-form-row {
        grid-template-columns: 1fr;
    }

    .ws-inline-cta {
        padding: 32px 24px;
    }

    .ws-inline-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ws-inline-cta-actions .ws-btn {
        justify-content: center;
    }

    .ws-cta-banner {
        padding: 48px 0;
    }

    .ws-cta-banner-actions {
        flex-direction: column;
    }

    .ws-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ws-about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .ws-product-showcase-card {
        padding: 28px;
    }

    .ws-product-mockup {
        font-size: 48px;
    }

    .ws-industries-grid {
        gap: 12px;
    }

    .ws-industry-item {
        min-width: 100px;
        padding: 16px 12px;
    }

    .ws-subscribe-form {
        flex-direction: column;
    }

    .ws-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .ws-stat-num {
        font-size: 36px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .ws-hero h1 {
        font-size: 26px;
    }

    .ws-hero-stat-num {
        font-size: 28px;
    }

    .ws-hero-stats {
        gap: 16px;
    }

    .ws-section-header h2 {
        font-size: 24px;
    }

    .ws-about-highlights {
        grid-template-columns: 1fr;
    }

    .ws-tech-grid,
    .ws-process-grid,
    .ws-stats-grid {
        grid-template-columns: 1fr;
    }

    .ws-cta-banner-text h2 {
        font-size: 24px;
    }
}
