/*
Theme Name: AJM Solutions Premium
Theme URI: https://ajm-solutions.com
Author: AJM Solutions
Author URI: https://ajm-solutions.com
Description: A premium, modern theme for AJM Solutions featuring glassmorphism, GSAP animations, and an Apple-esque design aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ajm-solutions
*/

/* ===================================
   CSS Variables & Base Styles
   =================================== */
:root {
    --primary-blue: #003366;
    --tech-green: #009933;
    --light-green: #00cc44;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-hover: rgba(255, 255, 255, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.37);
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --gradient-main: linear-gradient(135deg, #003366 0%, #004d1a 50%, #009933 100%);
    --gradient-hero: linear-gradient(180deg, #001a33 0%, #003366 50%, #004d26 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--gradient-hero);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===================================
   Glassmorphic Navigation
   =================================== */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 51, 102, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav-glass.scrolled {
    background: rgba(0, 51, 102, 0.8);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    color: var(--tech-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tech-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--tech-green);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--light-green);
    transform: scale(1.05);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--tech-green);
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00cc44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-container {
    height: 1.5em;
    overflow: hidden;
    margin-bottom: 1rem;
}

.typewriter {
    color: var(--tech-green);
    border-right: 3px solid var(--tech-green);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--tech-green); }
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tech-green) 0%, var(--light-green) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 153, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 153, 51, 0.5);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 153, 51, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(0, 153, 51, 0.7), 0 0 30px rgba(0, 153, 51, 0.4); }
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    transform: translateY(-3px);
}

/* ===================================
   Section Base Styles
   =================================== */
section {
    padding: 100px 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 153, 51, 0.2);
    color: var(--tech-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
}

/* ===================================
   Features Grid
   =================================== */
.features-section {
    background: linear-gradient(180deg, #002244 0%, #003366 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tech-green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--glass-hover);
    box-shadow: 0 20px 60px rgba(0, 153, 51, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tech-green) 0%, var(--light-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Horizontal Scroll Showcase
   =================================== */
.showcase-section {
    background: linear-gradient(180deg, #003366 0%, #001a33 100%);
    padding: 100px 0;
    overflow: hidden;
}

.showcase-container {
    position: relative;
    height: 100vh;
}

.showcase-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    gap: 3rem;
    padding: 0 5vw;
    will-change: transform;
}

.showcase-card {
    flex-shrink: 0;
    width: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.showcase-animation {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.showcase-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.showcase-card p {
    font-size: 1rem;
}

/* Animated Icons */
.scan-animation {
    position: relative;
}

.scan-animation .phone {
    width: 80px;
    height: 140px;
    background: linear-gradient(145deg, #1a1a1a, #333);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.scan-animation .scan-line {
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--tech-green);
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--tech-green);
    animation: scanMove 1.5s ease-in-out infinite;
}

@keyframes scanMove {
    0%, 100% { top: 30%; }
    50% { top: 70%; }
}

.whatsapp-animation {
    position: relative;
}

.whatsapp-animation .chat-bubble {
    background: #25D366;
    padding: 1rem 1.5rem;
    border-radius: 20px 20px 5px 20px;
    color: white;
    font-size: 0.9rem;
    animation: floatUp 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.offline-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.offline-animation .signal-icon {
    font-size: 3rem;
    animation: signalPulse 2s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 40% { opacity: 0.3; color: #ff4444; }
    50%, 100% { opacity: 1; color: var(--tech-green); }
}

.offline-animation .status-text {
    font-weight: 600;
    animation: textChange 2s ease-in-out infinite;
}

/* ===================================
   Command Center Section
   =================================== */
.command-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.command-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 51, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.command-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.command-dashboard {
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27ca40; }

.dashboard-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 1rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.role-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.role-card.owner {
    border-color: rgba(0, 204, 68, 0.3);
    background: rgba(0, 153, 51, 0.1);
}

.role-card.manager {
    border-color: rgba(0, 153, 255, 0.3);
    background: rgba(0, 102, 204, 0.1);
}

.role-card.cashier {
    border-color: rgba(153, 153, 153, 0.3);
    background: rgba(100, 100, 100, 0.1);
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.role-card.owner .role-icon {
    background: linear-gradient(135deg, var(--tech-green), var(--light-green));
}

.role-card.manager .role-icon {
    background: linear-gradient(135deg, #0066cc, #0099ff);
}

.role-card.cashier .role-icon {
    background: linear-gradient(135deg, #666, #999);
}

.role-card h3 {
    margin-bottom: 0.5rem;
}

.role-card .role-access {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.access-list {
    text-align: left;
    list-style: none;
}

.access-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.access-list li.granted::before {
    content: '✓';
    color: var(--tech-green);
    font-weight: bold;
}

.access-list li.restricted::before {
    content: '✕';
    color: #ff4444;
    font-weight: bold;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 153, 51, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--tech-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tech-green), var(--light-green));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-tier {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--tech-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--tech-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    background: linear-gradient(180deg, #001a33 0%, #002244 100%);
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-content h2 {
    margin-bottom: 1.5rem;
}

.map-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-features {
    list-style: none;
}

.map-features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.map-features li .icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 153, 51, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-green);
}

.map-visual {
    position: relative;
    height: 500px;
}

.ghana-map {
    width: 100%;
    height: 100%;
    position: relative;
}

.ghana-map svg {
    width: 100%;
    height: 100%;
    fill: rgba(0, 153, 51, 0.2);
    stroke: var(--tech-green);
    stroke-width: 1;
}

.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--tech-green);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--tech-green);
    animation: dotPulse 2s ease-in-out infinite;
}

.map-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 153, 51, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dotRipple 2s ease-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes dotRipple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-dot:nth-child(1) { top: 20%; left: 40%; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 35%; left: 55%; animation-delay: 0.3s; }
.map-dot:nth-child(3) { top: 50%; left: 45%; animation-delay: 0.6s; }
.map-dot:nth-child(4) { top: 65%; left: 60%; animation-delay: 0.9s; }
.map-dot:nth-child(5) { top: 75%; left: 50%; animation-delay: 1.2s; }

.sync-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sync-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-green), transparent);
    animation: syncPulse 3s ease-in-out infinite;
}

@keyframes syncPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #001122 0%, #000 100%);
    padding: 60px 2rem 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-green), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--tech-green);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--tech-green);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact .icon {
    color: var(--tech-green);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--tech-green);
    font-style: italic;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .map-visual {
        height: 400px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 51, 102, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .showcase-card {
        width: 300px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: linear-gradient(180deg, #002244 0%, #001a33 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    background: #002040 !important;
    border: 2px solid #00994d !important;
    padding: 1.25rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #003050 !important;
    border-color: #00cc66 !important;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    color: #00cc66 !important;
}

.value-content p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: white !important;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.5rem;
}

.stat-card {
    background: #002040 !important;
    border: 2px solid #00994d !important;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #003050 !important;
    border-color: #00cc66 !important;
}

.stat-number {
    display: block !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #00cc66 !important;
    -webkit-text-fill-color: #00cc66 !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem !important;
    color: white !important;
    display: block !important;
}

.about-badge-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 153, 51, 0.15);
    border: 1px solid rgba(0, 153, 51, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: #001a33;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    justify-content: center;
}

.service-card {
    background-color: #002040;
    border: 2px solid #00994d;
    border-radius: 20px;
    padding: 1.5rem;
    width: calc(33.333% - 1rem);
    min-width: 280px;
    max-width: 360px;
}

@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .service-card {
        width: 100%;
        max-width: 100%;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #003050;
    box-shadow: 0 10px 30px rgba(0, 153, 51, 0.3);
    border-color: #00cc66;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 153, 51, 0.25), rgba(0, 204, 68, 0.15));
    border: 1px solid rgba(0, 153, 51, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--tech-green);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    background: rgba(0, 51, 102, 0.6);
    border: 1px solid rgba(0, 153, 51, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #b3ffcc;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    padding-top: 2rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ===================================
   Flagship Product Section
   =================================== */
.flagship-section {
    background: linear-gradient(180deg, #002244 0%, #003366 50%, #001a33 100%);
    position: relative;
    overflow: hidden;
}

.flagship-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 153, 51, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.flagship-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.flagship-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 10;
}

.flagship-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.flagship-tagline {
    margin-bottom: 1.5rem;
}

.tagline-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--tech-green), var(--light-green));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flagship-tagline h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, var(--tech-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flagship-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.flagship-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--glass-hover);
    border-color: var(--tech-green);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.flagship-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.flagship-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #003366 0%, #001a33 100%);
    border-radius: 30px;
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.app-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.app-status {
    font-size: 0.8rem;
    color: var(--tech-green);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.app-stats .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tech-green);
    margin-bottom: 0.25rem;
}

.app-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.app-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.action-btn {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: var(--tech-green);
}

.float-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
}

.float-badge.badge-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.float-badge.badge-2 {
    bottom: 30%;
    left: 0;
    animation-delay: 1s;
}

.float-badge.badge-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* POS Features Section */
.pos-features-section {
    background: linear-gradient(180deg, #001a33 0%, #002244 100%);
    padding-top: 60px;
}

/* ===================================
   Responsive - New Sections
   =================================== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .flagship-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flagship-highlights {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .flagship-cta {
        justify-content: center;
    }
    
    .flagship-visual {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.25rem;
    }
    
    .flagship-tagline h3 {
        font-size: 2rem;
    }
    
    .flagship-highlights {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .float-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-badge-group {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===================================
   Premium Illustrations
   =================================== */

/* About Section Illustration */
.about-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.illustration-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.about-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 153, 51, 0.2));
}

.about-svg .pulse-circle {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        filter: url(#glow);
        opacity: 1;
    }
    50% { 
        filter: url(#glow) brightness(1.2);
        opacity: 0.9;
    }
}

.about-svg .orbit-node {
    animation: nodeFloat 4s ease-in-out infinite;
}

.about-svg .node-1 { animation-delay: 0s; }
.about-svg .node-2 { animation-delay: 0.5s; }
.about-svg .node-3 { animation-delay: 1s; }
.about-svg .node-4 { animation-delay: 1.5s; }
.about-svg .node-5 { animation-delay: 2s; }
.about-svg .node-6 { animation-delay: 2.5s; }
.about-svg .node-7 { animation-delay: 3s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.about-svg .particle {
    animation: particleFloat 5s ease-in-out infinite;
}

.about-svg .p1 { animation-delay: 0s; }
.about-svg .p2 { animation-delay: 0.8s; }
.about-svg .p3 { animation-delay: 1.6s; }
.about-svg .p4 { animation-delay: 2.4s; }
.about-svg .p5 { animation-delay: 3.2s; }
.about-svg .p6 { animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.6;
    }
    25% { 
        transform: translate(5px, -8px);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-3px, -12px);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-8px, -5px);
        opacity: 0.7;
    }
}

.about-svg .connection-lines line {
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 8; }
}

/* Services Banner Illustration */
.services-hero-visual {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
}

.services-banner-svg {
    width: 100%;
    height: auto;
    min-height: 200px;
}

.services-banner-svg .flow-line {
    animation: flowAnimation 8s ease-in-out infinite;
}

.services-banner-svg .line-1 { animation-delay: 0s; }
.services-banner-svg .line-2 { animation-delay: 2s; }
.services-banner-svg .line-3 { animation-delay: 1s; }
.services-banner-svg .line-4 { animation-delay: 3s; }

@keyframes flowAnimation {
    0%, 100% { 
        stroke-dasharray: 0 1200;
        stroke-dashoffset: 0;
    }
    50% { 
        stroke-dasharray: 600 1200;
        stroke-dashoffset: -300;
    }
}

.services-banner-svg .float-icon {
    animation: iconFloat 6s ease-in-out infinite;
}

.services-banner-svg .icon-1 { animation-delay: 0s; }
.services-banner-svg .icon-2 { animation-delay: 1s; }
.services-banner-svg .icon-3 { animation-delay: 2s; }
.services-banner-svg .icon-4 { animation-delay: 3s; }
.services-banner-svg .icon-5 { animation-delay: 4s; }
.services-banner-svg .icon-6 { animation-delay: 5s; }

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px);
        opacity: 1;
    }
}

.services-banner-svg .dot {
    animation: dotPulse 2s ease-in-out infinite;
}

.services-banner-svg .dot-1 { animation-delay: 0s; }
.services-banner-svg .dot-2 { animation-delay: 0.3s; }
.services-banner-svg .dot-3 { animation-delay: 0.6s; }
.services-banner-svg .dot-4 { animation-delay: 0.9s; }
.services-banner-svg .dot-5 { animation-delay: 1.2s; }
.services-banner-svg .dot-6 { animation-delay: 1.5s; }

@keyframes dotPulse {
    0%, 100% { 
        r: 3;
        opacity: 0.5;
    }
    50% { 
        r: 5;
        opacity: 1;
    }
}

/* Update About Container for new layout */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Responsive for illustrations */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-illustration {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-hero-visual {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .illustration-wrapper {
        max-width: 350px;
    }
    
    .services-banner-svg {
        min-height: 150px;
    }
    
    .services-banner-svg .float-icon {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .illustration-wrapper {
        max-width: 280px;
    }
    
    .services-hero-visual {
        display: none;
    }
}
