/* POS Solutions Page Styles */

/* Hero Section */
.pos-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.pos-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.pos-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0d47a1 50%, #1565c0 100%);
}

.pos-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.pos-hero-particles .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(25, 118, 210, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.pos-hero-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.pos-hero-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.pos-hero-particles .particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 2s; }
.pos-hero-particles .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(20px); opacity: 0.8; }
}

.pos-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pos-hero-content {
    color: #fff;
}

.pos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 118, 210, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1976d2;
}

.pos-badge i {
    font-size: 1rem;
}

.pos-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pos-hero-title .title-highlight {
    background: linear-gradient(90deg, #1976d2, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pos-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #42a5f5;
    margin-bottom: 20px;
}

.pos-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pos-hero-tagline {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.pos-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.pos-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pos-hero-stats .stat-number {
    font-size: 2rem;
    color: #ff9800;
}

.pos-hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.pos-hero-stats .stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.pos-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.4);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #25D366;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #25D366;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

/* Section Common Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(25, 118, 210, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1976d2;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Why Choose Section */
.pos-why-choose {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* Deployment Section */
.pos-deployment {
    padding: 80px 20px;
    background: #fff;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.deployment-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-10px);
    border-color: #1976d2;
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.15);
}

.deployment-card.featured {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.deployment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 20px;
    color: #fff;
    font-size: 2.5rem;
}

.deployment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.deployment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.deployment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.deployment-card.featured .deployment-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.deployment-features li i {
    color: #ff9800;
    font-size: 1rem;
}

.deployment-best-for {
    background: rgba(25, 118, 210, 0.1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.best-for-label {
    font-weight: 700;
    color: #1976d2;
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.best-for-text {
    color: inherit;
    font-size: 0.95rem;
}

.deployment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    border: 1px solid rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.deployment-btn:hover {
    background: #1976d2;
    color: #fff;
}

.deployment-btn.primary {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    color: #fff;
    border: none;
}

.deployment-btn.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

/* Core POS Features Section */
.pos-features {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.feature-card ul li i {
    color: #ff9800;
    margin-top: 4px;
}

/* Multi-Branch Section */
.pos-multi-branch {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.multi-branch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.multi-branch-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.multi-branch-text .section-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.multi-branch-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.multi-branch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
}

.multi-branch-features li i {
    color: #ff9800;
    font-size: 1.1rem;
}

.multi-branch-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.branch-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

.central-hub i {
    font-size: 2rem;
    margin-bottom: 4px;
}

.branch-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.branch-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(25, 118, 210, 0.2);
    border: 2px solid #1976d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-size: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
    animation: pulse-node 2s ease-in-out infinite;
}

.branch-node::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1976d2);
    transform: rotate(var(--angle)) translateX(-35px);
    opacity: 0.5;
}

@keyframes pulse-node {
    0%, 100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle))) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle))) scale(1.1); }
}

/* KRA Compliance Section */
.pos-kra-compliance {
    padding: 80px 20px;
    background: #fff;
}

.kra-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.kra-visual {
    display: flex;
    justify-content: center;
}

.kra-badge-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.3);
}

.kra-badge-large i {
    font-size: 4rem;
    margin-bottom: 8px;
}

.kra-badge-large span {
    font-size: 1.2rem;
}

.kra-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.kra-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.kra-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #333;
}

.kra-features li i {
    color: #ff9800;
    font-size: 1.1rem;
}

.kra-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1976d2;
    font-style: italic;
}

/* Payment Methods Section */
.pos-payments {
    padding: 80px 20px;
    background: #f8f9fa;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.payment-method {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.payment-icon.mpesa {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.payment-icon.eazzypay {
    background: rgba(139, 0, 0, 0.1);
    color: #8B0000;
}

.payment-icon.card {
    background: rgba(0, 102, 204, 0.1);
    color: #0066CC;
}

.payment-icon.cash {
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
}

.payment-method h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.payment-method p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.payment-reconciliation {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.payment-reconciliation h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.payment-reconciliation h3 i {
    color: #42a5f5;
    margin-right: 10px;
}

.reconciliation-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reconciliation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.reconciliation-item i {
    color: #ff9800;
}

/* Integration Section */
.pos-integration {
    padding: 80px 20px;
    background: #fff;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.integration-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.integration-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.integration-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.integration-card ul li i {
    color: #ff9800;
    font-size: 0.8rem;
}

/* Security Section */
.pos-security {
    padding: 80px 20px;
    background: #f8f9fa;
}

.security-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.security-item i {
    font-size: 1.5rem;
    color: #1976d2;
}

.security-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
}

/* Industries Section */
.pos-industries {
    padding: 80px 20px;
    background: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.industry-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: #1976d2;
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 20px;
    color: #fff;
    font-size: 2rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.industry-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card ul li:last-child {
    border-bottom: none;
}

.industry-card ul li i {
    color: #ff9800;
}

/* One Vendor Section */
.pos-one-vendor {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    color: #fff;
    text-align: center;
}

.one-vendor-content {
    max-width: 800px;
    margin: 0 auto;
}

.one-vendor-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 3rem;
}

.one-vendor-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.one-vendor-content > p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.one-vendor-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.vendor-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
}

.vendor-benefit i {
    font-size: 1.2rem;
}

/* CTA Section */
.pos-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-tagline {
    font-size: 1.3rem;
    color: #42a5f5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pos-hero-title {
        font-size: 2.5rem;
    }
    
    .multi-branch-content,
    .kra-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .multi-branch-text,
    .kra-text {
        order: 2;
    }
    
    .multi-branch-visual,
    .kra-visual {
        order: 1;
        margin-bottom: 40px;
    }
    
    .multi-branch-features,
    .kra-features {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pos-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .pos-hero-title {
        font-size: 2rem;
    }
    
    .pos-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .pos-hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .pos-hero-stats .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .pos-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .deployment-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-diagram {
        width: 250px;
        height: 250px;
    }
    
    .branch-node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
    }
    
    .reconciliation-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .security-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .security-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .one-vendor-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .vendor-benefit {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large,
    .btn-outline-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Dark mode support */
.dark .section-title {
    color: #fff;
}

.dark .section-description,
.dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.dark .pos-why-choose,
.dark .pos-features,
.dark .pos-payments,
.dark .pos-security {
    background: #0f0f1a;
}

.dark .why-item,
.dark .feature-card,
.dark .payment-method,
.dark .security-item {
    background: #1a1a2e;
}

.dark .why-item h4,
.dark .feature-card h3,
.dark .payment-method h4,
.dark .security-item span,
.dark .industry-card h3,
.dark .integration-card h3 {
    color: #fff;
}

.dark .feature-card ul li,
.dark .industry-card ul li,
.dark .integration-card ul li,
.dark .payment-method p {
    color: rgba(255, 255, 255, 0.7);
}

.dark .pos-deployment,
.dark .pos-kra-compliance,
.dark .pos-integration,
.dark .pos-industries {
    background: #1a1a2e;
}

.dark .deployment-card,
.dark .integration-card,
.dark .industry-card {
    background: #0f0f1a;
}

.dark .deployment-card h3,
.dark .kra-text h2 {
    color: #fff;
}

.dark .kra-features li {
    color: rgba(255, 255, 255, 0.8);
}
