/* ==========================================================================
   OneDevMCA - Style5.css
   Brand new design from scratch with cross-browser compatibility
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Background and Layout
   ========================================================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background Grid */
.animated-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ==========================================================================
   Trust Badge Bar
   ========================================================================== */
.trust-badge-bar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.trust-badge-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #00d4ff;
}

.trust-badge i {
    color: #00d4ff;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ==========================================================================
   Header and Navigation - CRITICAL: Never turns white
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    margin-top: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Ensure header never turns white */
.header,
.header * {
    background: transparent !important;
}

.navbar {
    padding: 1rem 0;
    background: transparent !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}

/* Brand/Logo */
.nav-brand {
    background: transparent !important;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #00d4ff !important;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px #00d4ff;
    transition: all 0.3s ease;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.nav-brand a:hover,
.nav-brand a:focus {
    transform: scale(1.05);
    text-shadow: 0 0 20px #00d4ff;
    color: #00d4ff !important;
    outline: none;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    animation: glow 2s ease-in-out infinite alternate;
    color: #00d4ff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #00d4ff; }
    to { text-shadow: 0 0 20px #00d4ff, 0 0 30px #00d4ff; }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: transparent !important;
    margin: 0;
    padding: 0;
}

.nav-item {
    background: transparent !important;
}

.nav-link {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    display: block;
    border: 1px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link:focus::before {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00d4ff;
    outline: none;
    border-color: rgba(0, 212, 255, 0.3);
}

/* Focus states for accessibility */
.nav-link:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

.nav-toggle:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent !important;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    outline: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00d4ff !important;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px #00d4ff;
    border-radius: 2px;
}

/* Active state for hamburger */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
} 

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
}

.hero-badge i {
    color: #00d4ff;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)); }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateX(10px);
}

.hero-feature i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.hero-graphic {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.hero-graphic i {
    font-size: 3rem;
    color: #00d4ff;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-graphic i:nth-child(1) {
    animation-delay: 0s;
    color: #00d4ff;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 1s;
    color: #ff0080;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 2s;
    color: #00ff88;
}

.hero-graphic i:nth-child(4) {
    animation-delay: 3s;
    color: #ffaa00;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.section-header p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Services Section - Compact Design
   ========================================================================== */
.services {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #00d4ff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-card p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 0.35rem 0;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.service-card ul li:hover {
    color: #00d4ff;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #00d4ff;
    margin-top: 0.5rem;
}

.service-badge i {
    font-size: 1rem;
}

/* ==========================================================================
   Security & Trust Section
   ========================================================================== */
.security-trust {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-card:hover::before {
    opacity: 1;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #00d4ff;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.security-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.security-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.security-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* ==========================================================================
   Payment Solutions Section
   ========================================================================== */
.payment-solutions {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payment-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.payment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.payment-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.payment-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.payment-feature i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.payment-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.payment-feature p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-visual {
    text-align: center;
}

.payment-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-cards i {
    font-size: 3rem;
    color: #00d4ff;
    animation: float 3s ease-in-out infinite;
}

.payment-cards i:nth-child(1) { animation-delay: 0s; }
.payment-cards i:nth-child(2) { animation-delay: 1s; }
.payment-cards i:nth-child(3) { animation-delay: 2s; }
.payment-cards i:nth-child(4) { animation-delay: 3s; }

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    color: #00d4ff;
}

.security-badge i {
    font-size: 1rem;
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.solutions {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-item:hover::before {
    opacity: 1;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #00d4ff;
}

.solution-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-item p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.solution-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #00d4ff;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #ffaa00;
    font-size: 1rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.certifications {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.certification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    color: #00d4ff;
}

.certification i {
    font-size: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
}

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

.team-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.team-graphic i {
    font-size: 4rem;
    color: #00d4ff;
    animation: spin 10s linear infinite;
}

.team-graphic::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    color: #00d4ff;
}

.form-security i {
    font-size: 1.2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-trust {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: #00d4ff;
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* Services Section Mobile Optimization */
    .services {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    /* Navbar Mobile Styles */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 1rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 15px;
        font-size: 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(0, 212, 255, 0.1);
        border-color: #00d4ff;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .payment-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .images-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .image-container {
        height: 250px;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }

    .services-grid,
    .security-grid,
    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certifications {
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .payment-cards {
        flex-wrap: wrap;
    }

    .payment-cards i {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .team-graphic {
        width: 250px;
        height: 250px;
    }

    .team-graphic i {
        font-size: 3rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-container {
        height: 200px;
    }
    
    .overlay-content {
        padding: 15px;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .team-graphic {
        width: 250px;
        height: 250px;
    }

    .team-graphic i {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Images Promotion Section
   ========================================================================== */
.images-promotion {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.images-promotion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.images-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    padding: 0 20px;
    /* Safari and Edge compatibility */
    align-items: flex-start;
}

.image-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 280px;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    /* Safari and Edge compatibility */
    flex-shrink: 0;
    margin: 0;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    /* Safari image display fixes */
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Ensure proper image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.image-card:hover .image-container img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.85) 0%,
        rgba(255, 0, 128, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.image-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .images-grid {
        gap: 20px;
        padding: 0 15px;
        justify-content: center;
    }
    
    .image-card {
        width: 260px;
        flex-shrink: 0;
    }
    
    .image-container {
        height: 200px;
    }
    
    .overlay-content {
        padding: 18px;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .images-grid {
        gap: 15px;
        padding: 0 10px;
        justify-content: center;
    }
    
    .image-card {
        width: 100%;
        max-width: 260px;
        flex-shrink: 0;
    }
    
    .image-container {
        height: 180px;
    }
    
    .overlay-content {
        padding: 16px;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
@media (prefers-contrast: high) {
    .nav-link {
        border: 2px solid #00d4ff;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: #00d4ff;
        color: #000000 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-link,
    .nav-link::before,
    .hero-graphic i,
    .service-icon::before,
    .security-icon::before,
    .team-graphic::before {
        animation: none;
        transition: none;
    }

    .nav-link::before,
    .hero-graphic i,
    .service-icon::before,
    .security-icon::before,
    .team-graphic::before {
        animation: none;
    }
} 

/* ==========================================================================
   Pricing Section Styles - Simplified & Browser Compatible
   ========================================================================== */
.pricing {
    padding: 80px 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* License Toggle */
.license-toggle {
    text-align: center;
    margin-bottom: 50px;
}

.toggle-btn {
    background: #333;
    border: 2px solid #00d4ff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 10px;
    display: inline-block;
}

.toggle-btn:hover {
    background: #00d4ff;
    color: #000000;
}

.toggle-btn.active {
    background: #00d4ff;
    color: #000000;
}

.toggle-btn i {
    margin-right: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: block;
    margin-bottom: 60px;
}

.pricing-grid:not(.active) {
    display: none;
}

.pricing-grid:after {
    content: "";
    display: table;
    clear: both;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    float: left;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    box-sizing: border-box;
}

.pricing-card:nth-child(3n) {
    margin-right: 0;
}

.pricing-card:hover {
    border-color: #00d4ff;
}

.pricing-card.featured {
    border-color: #00d4ff;
    background: #1a1a1a;
}

.pricing-card.free {
    border-color: #ff0080;
    background: #1a1a1a;
}

/* Popular Badge */
.popular-badge {
    background: #00d4ff;
    color: #000000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Pricing Header */
.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    margin-bottom: 15px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #00d4ff;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
}

.original-price {
    margin-bottom: 20px;
}

.crossed {
    text-decoration: line-through;
    color: #666666;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.discount {
    background: #00d4ff;
    color: #000000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.free-description {
    color: #cccccc;
    font-size: 16px;
    margin-top: 10px;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature {
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature i {
    color: #00d4ff;
    font-size: 18px;
    margin-right: 15px;
}

.feature span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* Pricing Footer */
.pricing-footer .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
}

/* Additional Services */
.additional-services {
    margin-bottom: 60px;
    text-align: center;
}

.additional-services h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.services-grid {
    display: block;
}

.services-grid:after {
    content: "";
    display: table;
    clear: both;
}

.service-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    float: left;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    box-sizing: border-box;
}

.service-item:nth-child(3n) {
    margin-right: 0;
}

.service-item:hover {
    border-color: #00d4ff;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.service-item p:last-child {
    color: #cccccc;
    font-size: 16px;
}

/* Payment Options */
.payment-options {
    text-align: center;
}

.payment-options h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods:after {
    content: "";
    display: table;
    clear: both;
}

.payment-method {
    float: left;
    width: calc(25% - 15px);
    margin-right: 15px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.payment-method:nth-child(4n) {
    margin-right: 0;
}

.payment-method:hover {
    border-color: #00d4ff;
}

.payment-method i {
    font-size: 32px;
    color: #00d4ff;
    margin-bottom: 10px;
    display: block;
}

.payment-method span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.security-note {
    background: #1a1a1a;
    border: 1px solid #00d4ff;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.security-note i {
    color: #00d4ff;
    font-size: 20px;
    margin-right: 15px;
}

.security-note span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design for Pricing */
@media screen and (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .toggle-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px auto;
    }
    
    .pricing-card {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    
    .service-item {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .payment-method {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 480px) {
    .pricing {
        padding: 40px 0;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .feature span {
        font-size: 14px;
    }
} 

/* ==========================================================================
   Page Header Styles
   ========================================================================== */
.page-header {
    padding: 120px 0 80px 0;
    background: #0a0a0a;
    border-bottom: 1px solid #333;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    color: #666666;
}

.breadcrumb span:last-child {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   CTA Section Styles
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Active Navigation Link Styles
   ========================================================================== */
.nav-link.active {
    color: #00d4ff !important;
    border-color: #00d4ff !important;
}

/* Responsive Design for Page Header and CTA */
@media screen and (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px 0;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .page-header-content p {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .page-header {
        padding: 80px 0 40px 0;
    }
    
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .page-header-content p {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
} 

/* Subscription Section Styles */
.subscription-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.subscription-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.subscription-card.featured {
    border-color: #007cba;
    transform: scale(1.05);
}

.subscription-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.subscription-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007cba;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-header {
    text-align: center;
    margin-bottom: 30px;
}

.subscription-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #007cba;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.savings {
    margin-top: 10px;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.monthly-total {
    margin-top: 8px;
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
}

.monthly-equivalent {
    margin-top: 8px;
    color: #007cba;
    font-weight: 600;
    font-size: 14px;
}

.enterprise-note {
    margin-top: 8px;
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
    font-style: italic;
}

.subscription-features {
    margin-bottom: 30px;
}

.subscription-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscription-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 15px;
    color: #495057;
}

.subscription-features li:last-child {
    border-bottom: none;
}

.subscription-features i {
    color: #28a745;
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
}

.subscription-action {
    text-align: center;
}

.subscription-action .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 124, 186, 0.1);
    border-radius: 10px;
    border-left: 4px solid #007cba;
}

.subscription-note p {
    margin: 0;
    color: #495057;
    font-size: 14px;
}

.subscription-note i {
    color: #007cba;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subscription-card {
        padding: 30px 20px;
    }
    
    .subscription-card.featured {
        transform: none;
    }
    
    .subscription-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .amount {
        font-size: 36px;
    }
} 
