/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f4c81;
    --primary-dark: #0a365a;
    --primary-light: #1a6db5;
    --accent: #00d4aa;
    --accent-dark: #00b894;
    --text: #1a1a2e;
    --text-light: #4a4a5a;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 76, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card {
    width: 380px;
    height: 240px;
    background: var(--gradient);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 6px;
}

.card-number {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.card-info {
    display: flex;
    gap: 40px;
}

.card-info .label {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-info .value {
    font-size: 14px;
    font-weight: 600;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 5%;
    color: var(--accent);
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 15%;
    color: var(--primary);
    animation-delay: 1s;
}

.icon-3 {
    top: 40%;
    right: 0;
    color: var(--primary-light);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.trust-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 40px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card.featured {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.solution-card.featured h3,
.solution-card.featured p,
.solution-card.featured .solution-link {
    color: white;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.solution-card.featured .solution-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.solution-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.solution-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.solution-link:hover {
    gap: 10px;
}

/* Coverage Section */
.coverage {
    padding: 100px 0;
    background: var(--bg-light);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.coverage-text > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

.coverage-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text);
}

.feature-item i {
    color: var(--accent);
    font-size: 20px;
}

/* World Map */
.coverage-map {
    position: relative;
}

.world-map {
    width: 100%;
    height: 400px;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23e2e8f0' d='M150,200 Q200,150 250,200 T350,200 Q400,150 450,200 T550,200 Q600,150 650,200 T750,200 Q800,150 850,200'/%3E%3C/svg%3E") center/contain no-repeat,
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    position: relative;
}

.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(15, 76, 129, 0.2);
    animation: pulse 2s infinite;
}

.map-dot.active::after {
    content: attr(data-region);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-dot.active:hover::after {
    opacity: 1;
}

.dot-1 { top: 30%; left: 20%; }
.dot-2 { top: 25%; left: 48%; }
.dot-3 { top: 35%; left: 75%; }
.dot-4 { top: 65%; left: 28%; }
.dot-5 { top: 40%; left: 58%; }
.dot-6 { top: 60%; left: 52%; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.cov-stat {
    text-align: center;
}

.cov-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.cov-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Security Section */
.security {
    padding: 100px 0;
    background: var(--bg);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.badge-item {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.badge-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.badge-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.badge-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.security-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.security-text > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sec-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.sec-item:hover {
    background: white;
    box-shadow: var(--shadow);
}

.sec-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.sec-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.sec-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text);
}

.author-title {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.contact-method .label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method .value {
    font-weight: 600;
    color: var(--text);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Page - New Layout */
.contact-page {
    padding: 80px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 48px;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
}

.values {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Coverage Page Styles */
.coverage-stats-section {
    padding: 80px 0;
    background: var(--bg);
}

.coverage-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coverage-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.coverage-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.coverage-stat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.coverage-stat-card .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.coverage-stat-card .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.regions {
    padding: 100px 0;
    background: var(--bg-light);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.region-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.region-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.region-header i {
    font-size: 32px;
    color: var(--primary);
}

.region-content {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.region-count {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.region-list {
    list-style: none;
    margin-bottom: 16px;
}

.region-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.region-list li i {
    color: var(--accent);
    font-size: 12px;
}

.region-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.region-methods span {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Solution Detail Page */
.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-light);
}

.solution-detail {
    padding: 100px 0;
    background: var(--bg);
}

.solution-detail.alt {
    background: var(--bg-light);
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-detail-grid.reverse {
    direction: rtl;
}

.solution-detail-grid.reverse > * {
    direction: ltr;
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
}

.solution-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.solution-detail-content > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text);
}

.feature-list li i {
    color: var(--accent);
    font-size: 16px;
}

/* Code Block */
.code-block {
    background: #1e293b;
    border-radius: 16px;
    padding: 24px;
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
}

.code-block pre {
    margin: 0;
    font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-block code {
    color: #e2e8f0;
    background: transparent;
}

/* Currency Showcase */
.currency-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.currency-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s;
}

.currency-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.currency-flag {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

/* POS Showcase */
.pos-showcase {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.pos-device {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    min-width: 140px;
}

.pos-device:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pos-device i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.pos-device span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-widget {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.dashboard-widget:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.widget-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.widget-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.widget-change {
    font-size: 14px;
    font-weight: 600;
}

.widget-change.positive {
    color: var(--accent);
}

.widget-change.negative {
    color: #ef4444;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.5);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.region-header i {
    font-size: 32px;
    color: var(--primary);
}

.region-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.region-content {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.region-count {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.region-list {
    list-style: none;
    margin-bottom: 16px;
}

.region-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.region-list li i {
    color: var(--accent);
    font-size: 12px;
}

.region-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.region-methods span {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Popular Currencies Section */
.popular-currencies {
    padding: 100px 0;
    background: var(--bg);
}

.currencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.currencies-grid .currency-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.currencies-grid .currency-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.currencies-grid .currency-flag {
    font-size: 40px;
    margin-bottom: 12px;
}

.currency-code {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.currency-name {
    font-size: 13px;
    color: var(--text-muted);
}

.currencies-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 24px;
}

/* About Page - Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 28px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: var(--bg);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.location-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.location-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.location-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.location-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.location-detail {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-content,
    .security-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .coverage-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .currencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2,
    .coverage-text h2,
    .security-text h2,
    .contact-info h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .solution-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-detail-content h2 {
        font-size: 28px;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .currency-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pos-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 32px;
    }
    
    .coverage-stats-grid,
    .currencies-grid,
    .values-grid,
    .team-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Visual Effects */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Solution Detail Visual Enhancements */
.solution-detail-visual {
    position: relative;
}

.solution-detail-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Animated gradient border for code block */
.code-block {
    position: relative;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #0f4c81, #00d4aa);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Currency showcase enhancement */
.currency-showcase {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.currency-item {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: none;
}

/* POS Device enhancement */
.pos-device {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 30px -5px rgba(15, 76, 129, 0.15);
}

/* Dashboard widgets enhancement */
.dashboard-widget {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Value cards enhancement */
.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
}

.value-icon {
    background: linear-gradient(135deg, #0f4c81 0%, #1a6db5 50%, #00d4aa 100%);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
}

/* Team member cards */
.team-member {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.member-avatar {
    background: linear-gradient(135deg, #0f4c81 0%, #00d4aa 100%);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
}

/* Location cards */
.location-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Region cards */
.region-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Currency items in grid */
.currencies-grid .currency-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Coverage stat cards */
.coverage-stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Contact panels */
.contact-info-panel,
.contact-form-panel {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Section tag enhancement */
.section-tag {
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 1px solid rgba(15, 76, 129, 0.2);
}

/* Floating animation for icons */
.solution-icon-large {
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation for important elements */
.coverage-stat-card:hover .stat-number,
.value-card:hover .value-icon {
    animation: pulse-glow 1s ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gradient text for headings */
.page-hero-content h1 {
    background: linear-gradient(135deg, #0f4c81 0%, #1a6db5 50%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image placeholder enhancement */
.image-placeholder {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed rgba(15, 76, 129, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button, .solution-card, .value-card, .team-member, .location-card, .region-card, .coverage-stat-card, .currency-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero decoration SVG */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Hover lift effect */
.solution-card:hover,
.value-card:hover,
.team-member:hover,
.location-card:hover,
.region-card:hover,
.coverage-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========== PAGE-SPECIFIC UNIQUE STYLES ========== */

/* Solutions Page - Tech Theme */
.solutions-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

.hero-tech-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.hero-tech-icons span {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f4c81 0%, #1a6db5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
    animation: float-gentle 3s ease-in-out infinite;
}

.hero-tech-icons span:nth-child(2) { animation-delay: 0.5s; }
.hero-tech-icons span:nth-child(3) { animation-delay: 1s; }
.hero-tech-icons span:nth-child(4) { animation-delay: 1.5s; }

/* Coverage Page - Globe Theme */
.coverage-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
}

.hero-coverage-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.hero-stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.hero-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f4c81 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* About Page - Team Theme */
.about-hero {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}

.hero-about-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 76, 129, 0.1);
}

.hero-badge i {
    color: var(--accent);
}

/* Contact Page - Communication Theme */
.contact-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
}

.hero-contact-channels {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.hero-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 100px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    transition: all 0.3s ease;
}

.hero-channel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-channel i {
    font-size: 28px;
    color: var(--primary);
}

.hero-channel span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* Section tag with icon enhancement */
.section-tag i {
    margin-right: 6px;
}

/* Responsive styles for unique hero elements */
@media (max-width: 768px) {
    .hero-tech-icons {
        gap: 12px;
    }
    
    .hero-tech-icons span {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-coverage-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-stat-item {
        padding: 16px 24px;
        min-width: 140px;
    }
    
    .hero-stat-num {
        font-size: 28px;
    }
    
    .hero-about-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact-channels {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}
}
