/* ============================================
   UTD Voice - Modern Zegocloud-Inspired Design
   Premium, Stunning, Professional
   ============================================ */

:root {
    --voice-primary: #0f0c60;
    --voice-primary-dark: #0a0b4d;
    --voice-primary-light: #1a1a80;
    --voice-secondary: #2a2a90;
    --voice-accent: #3a3aa0;
    --voice-gradient: linear-gradient(135deg, #0f0c60, #1a1a80);
    --voice-dark-bg: #050420;
    --voice-card-bg: rgba(10, 8, 40, 0.6);
    --utd-navy: #0f0c60;
    --utd-navy-light: #1a1a80;
    --utd-navy-dark: #0a0b4d;
}

/* ============================================
   PAGE BACKGROUND
   ============================================ */
.voice-page {
    background: linear-gradient(180deg, #0a1929 0%, #0d1f33 50%, #0a1929 100%);
    color: #fff;
    overflow-x: hidden;
}

.voice-page .container {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   UPDATED LOGO - UTD Software Solutions
   ============================================ */
.land-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 12px rgba(15, 12, 96, 0.3));
}

.land-logo:hover .logo-image {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(15, 12, 96, 0.6));
}

.voice-page .land-nav.scrolled .logo-image {
    filter: drop-shadow(0 3px 10px rgba(15, 12, 96, 0.2));
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0A1F52, #1A2F62);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(10, 31, 82, 0.4);
    transition: all 0.4s ease;
}

.land-logo:hover .logo-icon {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 12px 35px rgba(10, 31, 82, 0.6);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 18px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1;
}

.voice-page .land-nav.scrolled .logo-main {
    background: linear-gradient(135deg, #0A1F52, #1A3F72);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.voice-page .land-nav.scrolled .logo-tagline {
    color: rgba(10, 31, 82, 0.7);
}

/* ============================================
   NAVBAR - Voice Theme
   ============================================ */
.voice-page .land-nav {
    background: rgba(5, 4, 32, 0.95);
    border-bottom: 1px solid rgba(15, 12, 96, 0.3);
    box-shadow: 0 4px 30px rgba(15, 12, 96, 0.2);
    backdrop-filter: blur(20px);
}

.voice-page .land-nav.scrolled {
    background: rgba(15, 12, 96, 0.98);
    box-shadow: 0 8px 40px rgba(15, 12, 96, 0.4);
    border-bottom: 1px solid rgba(26, 26, 128, 0.3);
}

.voice-page .land-nav-links a.active {
    color: var(--voice-primary-light);
    position: relative;
}

.voice-page .land-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--voice-primary), transparent);
    animation: activeGlowVoice 2s ease-in-out infinite;
}

@keyframes activeGlowVoice {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.voice-page .btn-land-cta {
    background: var(--voice-gradient);
}

.voice-page .btn-land-cta:hover {
    background: linear-gradient(135deg, var(--voice-primary-dark), var(--voice-secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 12, 96, 0.4);
}

/* ============================================
   NEW HERO SECTION - PREMIUM
   ============================================ */
.voice-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 180px;
    overflow: hidden;
    margin-bottom: 80px;
}

.voice-hero-new .container {
    position: relative;
    min-height: 600px;
    width: 100%;
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0f0c60, transparent);
    top: -15%;
    right: 5%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1a1a80, transparent);
    bottom: -15%;
    left: 0%;
    animation-delay: -12s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 12, 96, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 12, 96, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.voice-hero-new .container {
    display: contents;
}

/* Hero Visual */
.hero-visual-new {
    position: absolute;
    width: 48%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Hero Content */
.hero-content-new {
    position: absolute;
    width: 48%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

/* RTL (عربي): Content يمين، Visual يسار */
html[dir="rtl"] .hero-content-new {
    text-align: right !important;
    right: 0 !important;
    left: auto !important;
    padding-right: 40px;
}

html[dir="rtl"] .hero-visual-new {
    left: 0 !important;
    right: auto !important;
    padding-left: 40px;
}

/* LTR (إنجليزي): Content يسار، Visual يمين */
html[dir="ltr"] .hero-content-new {
    text-align: left !important;
    left: 0 !important;
    right: auto !important;
    padding-left: 40px;
}

html[dir="ltr"] .hero-visual-new {
    right: 0 !important;
    left: auto !important;
    padding-right: 40px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(15, 12, 96, 0.12);
    border: 1px solid rgba(15, 12, 96, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--voice-primary-light);
    margin-bottom: 32px;
    box-shadow: 0 0 30px rgba(15, 12, 96, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 30px rgba(15, 12, 96, 0.3); }
    50% { box-shadow: 0 0 50px rgba(15, 12, 96, 0.5); }
}

.hero-title-new {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

.gradient-text-voice {
    background: linear-gradient(135deg, #0f0c60, #1a1a80, #2a2a90, #3a3aa0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc-new {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-voice-hero-primary,
.btn-voice-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
}

.btn-voice-hero-primary {
    background: var(--voice-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 10px 35px rgba(15, 12, 96, 0.5);
}

.btn-voice-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(15, 12, 96, 0.7);
}

.btn-voice-hero-secondary {
    background: rgba(15, 12, 96, 0.12);
    color: var(--voice-primary-light);
    border: 2px solid rgba(15, 12, 96, 0.4);
}

.btn-voice-hero-secondary:hover {
    background: rgba(15, 12, 96, 0.25);
    border-color: rgba(15, 12, 96, 0.6);
    transform: translateY(-4px);
}

.hero-stats-new {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    width: 85%;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background: rgba(15, 12, 96, 0.08);
    border: 1px solid rgba(15, 12, 96, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(15, 12, 96, 0.15);
    border-color: rgba(15, 12, 96, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c60, #1a1a80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hero-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    transform: perspective(1000px) rotateY(-8deg);
    box-shadow:
        -30px 30px 80px rgba(15, 12, 96, 0.6),
        0 0 0 1px rgba(15, 12, 96, 0.3);
    animation: voiceTiltFloat 6s ease-in-out infinite;
    transition: all 0.5s ease;
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow:
        -40px 40px 100px rgba(15, 12, 96, 0.7),
        0 0 0 1px rgba(15, 12, 96, 0.4);
}

@keyframes voiceTiltFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) translateY(-15px); }
}

/* ============================================
   USE CASES SECTION - STUNNING
   ============================================ */
.use-cases-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d1f33 0%, #0a1929 100%);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(15, 12, 96, 0.12);
    border: 1px solid rgba(15, 12, 96, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--voice-primary-light);
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 16px;
    font-family: 'Poppins', 'Cairo', sans-serif;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header-center p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

/* Voice: Clean Minimal Modern Cards */
.use-case-card {
    background: rgba(10, 8, 40, 0.4);
    border: 1px solid rgba(15, 12, 96, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.use-case-card:hover {
    border-color: rgba(15, 12, 96, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 12, 96, 0.2);
    background: rgba(10, 8, 40, 0.6);
}

.use-case-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 12, 96, 0.1), rgba(26, 26, 128, 0.1));
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-content {
    padding: 32px;
}

.use-case-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

.use-case-content > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.use-case-features {
    list-style: none;
}

.use-case-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.use-case-features li i {
    color: var(--voice-primary-light);
    font-size: 14px;
}

/* ============================================
   FOR DEVELOPERS SECTION
   ============================================ */
.for-developers-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1929 0%, #0d1f33 100%);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dev-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

.dev-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}

.dev-features {
    margin-bottom: 40px;
}

.dev-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(15, 12, 96, 0.08);
    border: 1px solid rgba(15, 12, 96, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.dev-feature-item:hover {
    background: rgba(15, 12, 96, 0.15);
    border-color: rgba(15, 12, 96, 0.4);
    transform: translateX(10px);
}

.dev-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--voice-gradient);
    border-radius: 14px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(15, 12, 96, 0.4);
}

.dev-feature-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.dev-feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-dev-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--voice-gradient);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 35px rgba(15, 12, 96, 0.5);
    transition: all 0.4s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-dev-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(15, 12, 96, 0.7);
}

.dev-visual {
    position: relative;
}

.dev-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(15, 12, 96, 0.3);
    border: 2px solid rgba(15, 12, 96, 0.2);
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.success-stories-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d1f33 0%, #0a1929 100%);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.success-card {
    background: var(--voice-card-bg);
    border: 2px solid rgba(15, 12, 96, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
}

.success-card:hover {
    border-color: rgba(15, 12, 96, 0.5);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(15, 12, 96, 0.4);
}

.success-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(15, 12, 96, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.success-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.success-card h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-card > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.success-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 12, 96, 0.12);
    border: 1px solid rgba(15, 12, 96, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--voice-primary-light);
}

/* ============================================
   WHY UTD VOICE - BENEFITS SECTION
   ============================================ */
.why-utd-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1929 0%, #0d1f33 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--voice-card-bg);
    border: 2px solid rgba(15, 12, 96, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
}

.benefit-card:hover {
    border-color: rgba(15, 12, 96, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(15, 12, 96, 0.4);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--voice-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(15, 12, 96, 0.5);
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(360deg);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   PRICING PACKAGES SECTION
   ============================================ */
.pricing-packages-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d1f33 0%, #0a1929 100%);
    position: relative;
}

.pricing-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--voice-card-bg);
    border: 2px solid rgba(15, 12, 96, 0.2);
    border-radius: 28px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(20px);
}

.package-card:hover {
    border-color: rgba(15, 12, 96, 0.5);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(15, 12, 96, 0.5);
}

.package-card.featured-package {
    border-color: var(--voice-primary);
    background: rgba(15, 12, 96, 0.12);
    box-shadow: 0 20px 60px rgba(15, 12, 96, 0.3);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 28px;
    background: linear-gradient(135deg, #0f0c60, #1a1a80);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(15, 12, 96, 0.6);
    letter-spacing: 0.5px;
}

.limited-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    letter-spacing: 0.5px;
    animation: limitedPulse 2s ease-in-out infinite;
}

@keyframes limitedPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header {
    position: relative;
    padding: 30px;
    border-radius: 24px 24px 0 0;
    text-align: center;
}

.package-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.package-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    font-family: 'Poppins', 'Cairo', sans-serif;
    color: #fff;
}

.package-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.package-price {
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(15, 12, 96, 0.2);
    margin-bottom: 30px;
}

.original-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c60, #1a1a80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.package-features li i {
    color: var(--voice-primary-light);
    font-size: 16px;
    flex-shrink: 0;
}

.package-discount {
    background: rgba(15, 12, 96, 0.12);
    border: 1px solid rgba(15, 12, 96, 0.3);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.discount-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #0f0c60, #1a1a80);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 8px;
}

.discount-text {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 18px;
    background: rgba(15, 12, 96, 0.15);
    color: var(--voice-primary-light);
    border: 2px solid rgba(15, 12, 96, 0.4);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    transition: all 0.4s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-package:hover {
    background: rgba(15, 12, 96, 0.25);
    border-color: rgba(15, 12, 96, 0.6);
    transform: translateY(-3px);
}

.btn-package.featured-btn {
    background: var(--voice-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(15, 12, 96, 0.5);
}

.btn-package.featured-btn:hover {
    box-shadow: 0 12px 45px rgba(15, 12, 96, 0.7);
}

.pricing-note-modern {
    background: rgba(15, 12, 96, 0.08);
    border: 1px solid rgba(15, 12, 96, 0.3);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-note-modern i {
    color: var(--voice-primary-light);
    font-size: 24px;
    flex-shrink: 0;
}

.pricing-note-modern p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.pricing-note-modern strong {
    color: #fff;
}

.package-offer-timer {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    color: #fca5a5;
    font-size: 13px;
    font-weight: 700;
}

.package-offer-timer i {
    color: #ef4444;
    margin-right: 6px;
}

/* ============================================
   SERVICES SECTION - MODERN
   ============================================ */
.voice-services-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1929 0%, #0d1f33 100%);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card-modern {
    background: var(--voice-card-bg);
    border: 2px solid rgba(15, 12, 96, 0.2);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(20px);
}

.service-card-modern:hover {
    border-color: rgba(15, 12, 96, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(15, 12, 96, 0.4);
}

.service-card-modern.featured-service {
    border-color: var(--voice-primary);
    background: rgba(15, 12, 96, 0.12);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--voice-primary), var(--voice-secondary));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(15, 12, 96, 0.5);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 36px;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.15) rotate(-8deg);
}

.service-card-modern h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

.service-card-modern > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price-modern {
    padding-top: 24px;
    border-top: 1px solid rgba(15, 12, 96, 0.2);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-large {
    font-size: 36px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c60, #1a1a80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0d1f33 0%, #1a2f4a 50%, #0d1f33 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 12, 96, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridPulse 5s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Cairo', sans-serif;
    background: linear-gradient(135deg, #fff, #0f0c60);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content-modern > p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-final {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    background: var(--voice-gradient);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 15px 45px rgba(15, 12, 96, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Cairo', sans-serif;
}

.btn-cta-primary-large:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 60px rgba(15, 12, 96, 0.8);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border: 2px solid rgba(37, 211, 102, 0.4);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    transition: all 0.4s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-cta-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-5px);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .voice-page .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .voice-hero-new .container {
        gap: 50px;
    }

    .hero-visual-new {
        width: 98%;
    }

    .hero-title-new {
        font-size: 52px;
    }

    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .voice-hero-new {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
        align-items: center;
    }

    .voice-hero-new .container {
        min-height: auto;
    }

    .hero-visual-new,
    .hero-content-new {
        position: relative !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding: 0 !important;
        margin-bottom: 40px;
    }

    .hero-visual-new {
        order: 1;
    }

    .hero-content-new {
        order: 2;
        text-align: center !important;
    }

    .hero-main-image {
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-stats-new {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
        order: 3;
    }

    .partner-badge {
        display: none !important;
    }

    .hero-title-new {
        font-size: 42px;
    }

    .section-header-center h2 {
        font-size: 40px;
    }

    .dev-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dev-visual {
        order: -1;
    }

    .cta-content-modern h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .voice-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title-new {
        font-size: 36px;
    }

    .hero-stats-new {
        grid-template-columns: 1fr;
    }

    .use-cases-grid,
    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .cta-content-modern h2 {
        font-size: 32px;
    }

    .cta-buttons-final {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-cta-primary-large,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Mega Menu Mobile */
    .mega-menu {
        top: 65px;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 16px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-menu-header h3 {
        font-size: 18px;
    }

    .mega-menu-header p {
        font-size: 11px;
    }

    .mega-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .mega-content h4 {
        font-size: 14px;
    }

    .mega-content p {
        font-size: 10px;
    }

    .logo-text {
        display: none;
    }

    .land-logo {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .voice-page .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title-new {
        font-size: 28px;
    }

    .hero-desc-new {
        font-size: 16px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }
}
