/* ============================================
   דף שיווק דיגיטלי - עיצוב מודרני ומרהיב
   ============================================ */

/* Hero Section Styles - Enhanced like index.html */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding-top: calc(var(--navbar-height) + 2rem);
    animation: gradient-shift-bg 15s ease infinite;
    background-size: 200% 200%;
}

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

.hero-background-new {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f15bb5 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #00bbf9 0%, transparent 70%);
    top: 50%;
    right: 40%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -60px) scale(1.1); }
    66% { transform: translate(-50px, 40px) scale(0.9); }
}

.hero-content-new {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Badges in Hero */
.trust-badges-hero {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full, 50px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-flow 4s linear infinite, pulse-glow-text 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes pulse-glow-text {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.8));
    }
}

.title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-highlight {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-top: 0.5rem;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle-new {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-subtitle-new strong {
    color: #fbbf24;
    font-weight: 700;
}

.hero-stats-new {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.stat-item-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    min-width: 180px;
}

.stat-item-new:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.stat-number-new {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-cta-new {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Why Section - Enhanced */
.why-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float-slow 25s ease-in-out infinite;
}

.why-section::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -180px;
    left: -180px;
    animation: float-slow 30s ease-in-out infinite reverse;
}

/* Reason Cards - 3D Enhanced */
.why-section .reason-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    border: 2px solid transparent;
}

.why-section .reason-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: rotate-glow 8s linear infinite;
}

.why-section .reason-card:hover::before {
    opacity: 1;
}

.why-section .reason-card:hover {
    transform: translateY(-15px) rotateX(3deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.2);
}

.why-section .reason-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

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

.why-section .reason-card:hover .reason-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.why-section .reason-card:nth-child(2) .reason-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(241, 91, 181, 0.3);
    animation-delay: 0.5s;
}

.why-section .reason-card:nth-child(3) .reason-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(0, 187, 249, 0.3);
    animation-delay: 1s;
}

.why-section .reason-card:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation-delay: 1.5s;
}

.why-section .reason-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.why-section .reason-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.why-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float-slow 30s ease-in-out infinite;
}

.why-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 91, 181, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float-slow 35s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 60px); }
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.reason-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

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

.reason-icon-wrapper {
    margin-bottom: 2rem;
}

.reason-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.5s ease;
}

.reason-card:nth-child(2) .reason-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(241, 91, 181, 0.3);
}

.reason-card:nth-child(3) .reason-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(0, 187, 249, 0.3);
}

.reason-card:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, #fee440, #f59e0b);
    box-shadow: 0 10px 30px rgba(254, 228, 64, 0.3);
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.reason-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.reason-description {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
}

/* Services Section - Enhanced */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    animation: float-slow 30s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    animation: float-slow 35s ease-in-out infinite reverse;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
}

.service-card-new:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 30px 70px rgba(99, 102, 241, 0.25),
        0 0 50px rgba(251, 191, 36, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.service-card-new:hover::after {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.service-card-new:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.service-card-new:nth-child(2)::before {
    background: linear-gradient(135deg, transparent 0%, rgba(241, 91, 181, 0.05) 100%);
}

.service-card-new:nth-child(3) {
    border-top-color: var(--accent-color);
}

.service-card-new:nth-child(3)::before {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 187, 249, 0.05) 100%);
}

.service-card-new:nth-child(4) {
    border-top-color: var(--warning-color);
}

.service-card-new:nth-child(4)::before {
    background: linear-gradient(135deg, transparent 0%, rgba(254, 228, 64, 0.08) 100%);
}

.service-icon-new {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-icon-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-card-new:hover .service-icon-new {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.5),
        0 0 40px rgba(251, 191, 36, 0.3);
}

.service-card-new:hover .service-icon-new::before {
    left: 100%;
}

.secondary-gradient {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 10px 30px rgba(241, 91, 181, 0.3) !important;
}

.accent-gradient {
    background: var(--gradient-accent) !important;
    box-shadow: 0 10px 30px rgba(0, 187, 249, 0.3) !important;
}

.warning-gradient {
    background: linear-gradient(135deg, #fee440, #f59e0b) !important;
    box-shadow: 0 10px 30px rgba(254, 228, 64, 0.3) !important;
}

.service-title-new {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card-new:hover .service-title-new {
    background: linear-gradient(135deg, #fbbf24 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.service-description-new {
    color: var(--gray-dark);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features-new li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.service-features-new i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Why OTEF Section */
.why-otef-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #f5f7ff 100%);
    position: relative;
}

.why-otef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white-color);
    transition: all 0.5s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-description {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Our Story Section */
.our-story-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float-slow 30s ease-in-out infinite;
}

.our-story-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float-slow 35s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 60px); }
}

.story-content-wrapper {
    position: relative;
    z-index: 1;
}

.story-main-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.story-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.story-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: icon-pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

.story-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.story-card-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.story-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.story-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(251, 191, 36, 0.2);
}

.story-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.story-highlight-item:hover .highlight-icon {
    transform: rotate(5deg) scale(1.1);
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.story-quote-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 1;
}

.story-quote-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate-subtle 15s linear infinite;
}

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

.story-quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.story-quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.story-flag {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    animation: flag-wave 2s ease-in-out infinite;
}

@keyframes flag-wave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Common Mistakes Section */
.common-mistakes-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.common-mistakes-section::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float-slow 28s ease-in-out infinite;
}

.common-mistakes-section::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -180px;
    left: -180px;
    animation: float-slow 32s ease-in-out infinite reverse;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.mistake-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(239, 68, 68, 0.15);
}

.mistake-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f87171);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.mistake-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.mistake-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.mistake-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.mistake-card:hover .mistake-number {
    transform: rotate(360deg) scale(1.1);
}

.mistake-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.mistake-card:hover .mistake-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08));
}

.mistake-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mistake-problem,
.mistake-solution {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mistake-problem {
    background: rgba(254, 226, 226, 0.5);
    border-right: 3px solid #ef4444;
}

.mistake-solution {
    background: rgba(220, 252, 231, 0.5);
    border-right: 3px solid #10b981;
}

.mistake-card:hover .mistake-problem {
    background: rgba(254, 226, 226, 0.8);
}

.mistake-card:hover .mistake-solution {
    background: rgba(220, 252, 231, 0.8);
}

.problem-label,
.solution-label {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.problem-label {
    color: #dc2626;
}

.solution-label {
    color: #059669;
}

.mistake-problem p,
.mistake-solution p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.mistakes-cta-box {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.mistakes-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-subtle 20s linear infinite;
}

.cta-icon-big {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    animation: icon-pulse 2s ease-in-out infinite;
}

.mistakes-cta-box h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mistakes-cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mistakes-cta-box .btn-primary-new {
    position: relative;
    z-index: 1;
}

/* Approach Section */
.approach-section {
    padding: 8rem 0;
    background: var(--white-color);
}

.approach-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
}

.approach-step {
    position: relative;
    padding: 0 0 4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.5s ease;
}

.approach-step:nth-child(2) .step-number {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(241, 91, 181, 0.3);
}

.approach-step:nth-child(3) .step-number {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(0, 187, 249, 0.3);
}

.approach-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.approach-step:hover .step-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    transform: translateX(-10px);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Success Stories Section - Enhanced */
.success-stories-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #f5f7ff 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float-slow 30s ease-in-out infinite;
}

.success-stories-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 91, 181, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float-slow 35s ease-in-out infinite reverse;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.story-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.story-card:nth-child(2) .story-avatar {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(241, 91, 181, 0.3);
}

.story-card:nth-child(3) .story-avatar {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(0, 187, 249, 0.3);
}

.story-info {
    flex: 1;
}

.story-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.story-company {
    color: var(--gray-dark);
    font-size: 1rem;
}

.story-rating {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.story-quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    color: rgba(99, 102, 241, 0.08);
    z-index: 0;
}

.story-quote p {
    position: relative;
    z-index: 1;
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
}

.story-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.story-metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.story-card:nth-child(2) .metric-number {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-card:nth-child(3) .metric-number {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 600;
}

/* Results Section */
.results-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
    animation: gradient-shift-bg 15s ease infinite;
    background-size: 200% 200%;
}

.results-section .section-header-new h2,
.results-section .section-header-new p {
    color: var(--white-color);
}

.results-section .section-badge-new {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.result-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.result-item:hover {
    transform: translateY(-20px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 70px rgba(99, 102, 241, 0.4),
        0 0 50px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(251, 191, 36, 0.4);
}

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

.result-item > * {
    position: relative;
    z-index: 1;
}

.result-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.result-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.result-item:hover .result-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 
        0 15px 50px rgba(251, 191, 36, 0.5),
        0 0 40px rgba(251, 191, 36, 0.3);
}

.result-item:hover .result-icon::before {
    left: 100%;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.result-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.result-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(170deg, #fafaff 0%, #f5f7ff 50%, #fafaff 100%);
}

.pricing-card-single {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s ease;
}

.pricing-card-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    margin: -2px;
    border-radius: var(--radius-xl);
}

.pricing-spotlight {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: spotlight-pulse 4s ease-in-out infinite;
}

@keyframes spotlight-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.pricing-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.pricing-badge i {
    color: #1f2937;
    animation: crown-shine 2s ease-in-out infinite;
}

@keyframes crown-shine {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    padding: 5rem 3rem 3rem;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing-header > * {
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.9;
}

.price-new {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-period {
    font-size: 1.5rem;
    opacity: 0.85;
    font-weight: 500;
}

.price-old-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 600;
}

.pricing-discount {
    background: rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.pricing-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-features {
    padding: 3rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(99, 102, 241, 0.02) 100%);
}

.feature-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    border-right: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-category:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    transform: translateX(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.category-header i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
}

.category-header h4 {
    font-size: 1.35rem;
    color: var(--dark-color);
    font-weight: 800;
    margin: 0;
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-category ul li:hover {
    color: var(--dark-color);
    padding-right: 5px;
}

.feature-category ul li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-category ul li:hover i {
    transform: scale(1.2);
    color: #059669;
}

.feature-category ul li strong {
    color: var(--dark-color);
    font-weight: 700;
}

.feature-bonus {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px dashed rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: bonus-pulse 3s ease-in-out infinite;
}

@keyframes bonus-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

.feature-bonus > * {
    position: relative;
    z-index: 1;
}

.feature-bonus i {
    font-size: 2.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    animation: gift-bounce 2s ease-in-out infinite;
}

@keyframes gift-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bonus-content strong {
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 800;
}

.bonus-content span {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.pricing-cta {
    padding: 0 3rem 3rem;
    text-align: center;
}

.btn-large {
    padding: 1.75rem 3.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 400px;
    height: 400px;
}

.btn-large span, .btn-large i {
    position: relative;
    z-index: 1;
}

.cta-benefits {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-note {
    max-width: 800px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(241, 91, 181, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white-color);
    flex-shrink: 0;
}

.pricing-note p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.pricing-note a:hover {
    color: var(--secondary-color);
}

/* Final CTA Section */
.cta-final-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white-color);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #f5f7ff 100%);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--white-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px);
}

.faq-question {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
}

.faq-question i:first-child {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: var(--white-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.faq-answer strong {
    color: var(--dark-color);
    font-weight: 700;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.faq-answer ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.25rem 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white-color);
}

.sticky-cta-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.sticky-cta-text span {
    font-size: 1rem;
    opacity: 0.95;
}

.btn-sticky {
    flex-shrink: 0;
    animation: pulse-sticky 2s ease-in-out infinite;
}

@keyframes pulse-sticky {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-new {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .sticky-cta-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-sticky {
        width: 100%;
        justify-content: center;
    }

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

    .hero-cta-new {
        flex-direction: column;
        align-items: stretch;
    }

    .reasons-grid,
    .services-grid-new,
    .why-otef-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-timeline::before {
        right: 20px;
    }

    .approach-step {
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 4rem 2rem 2rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .price-new {
        font-size: 3rem;
    }

    .pricing-features {
        padding: 2rem;
    }

    .pricing-note {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================
   Our Approach Section - New Design
   ============================================ */

.our-approach-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.approach-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.approach-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.approach-card:hover .approach-number {
    color: rgba(99, 102, 241, 0.15);
    transform: scale(1.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover .approach-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.approach-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    padding: 0.75rem 0;
    padding-right: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.approach-list li i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.approach-list li:hover {
    color: var(--primary-color);
    padding-right: 2.5rem;
}

.approach-list li:hover i {
    right: 0.25rem;
}

.approach-cta {
    margin-top: 4rem;
}

.cta-box-approach {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box-approach::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-subtle 15s linear infinite;
}

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

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: icon-pulse-approach 2s ease-in-out infinite;
}

@keyframes icon-pulse-approach {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-box-approach h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box-approach p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Service Notes */
.service-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-note strong {
    color: var(--primary-color);
}

/* Content Section Variants */
.content-section.purple-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.content-section.purple-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotate-slow 30s linear infinite;
}

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

.content-section.purple-bg .section-header-new,
.content-section.purple-bg .approach-card,
.content-section.purple-bg .cta-box-approach {
    position: relative;
    z-index: 1;
}

.content-section.purple-bg .section-title-new,
.content-section.purple-bg .section-subtitle-new {
    color: white;
}

.content-section.purple-bg .section-badge-new {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-card {
        padding: 2rem 1.5rem;
    }
    
    .approach-number {
        font-size: 3rem;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-box-approach {
        padding: 3rem 2rem;
    }
    
    .cta-box-approach h3 {
        font-size: 1.5rem;
    }
    
    .cta-box-approach p {
        font-size: 1rem;
    }
}

/* ============================================
   Contact Section - Professional Form
   ============================================ */

.contact-section-new {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.contact-background-new {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.orb-contact-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float 20s ease-in-out infinite;
}

.orb-contact-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f15bb5 0%, transparent 70%);
    bottom: -15%;
    left: -15%;
    animation: float 25s ease-in-out infinite reverse;
}

.contact-section-new .section-header-new {
    position: relative;
    z-index: 1;
}

.contact-section-new .section-title-new,
.contact-section-new .section-subtitle-new {
    color: white;
}

.contact-section-new .section-badge-new {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-content-new {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form-wrapper-new {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Heebo', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

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

.hidden {
    display: none;
}

.contact-form-new button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
}

.contact-info-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.contact-info-card.highlight-card h4,
.contact-info-card.highlight-card p {
    color: white;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:nth-child(1) .info-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-info-card:nth-child(2) .info-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-info-card:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-card.highlight-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.info-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-card p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--primary-color);
}

.contact-info-card.highlight-card p a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-contact {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
}

.social-contact p {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icons-contact a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper-new {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-section-new {
        padding: 5rem 0;
    }
    
    .contact-form-wrapper-new {
        padding: 1.5rem;
    }
    
    .form-group-new input,
    .form-group-new select,
    .form-group-new textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: #1e293b;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7),
                    0 0 0 15px rgba(37, 211, 102, 0.1),
                    0 0 0 30px rgba(37, 211, 102, 0.05);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Compact "Why OTEF?" section on mobile */
    .why-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-visual-card {
        padding: 1.25rem;
    }

    .why-visual-card h3 {
        font-size: 0.95rem;
    }

    .card-icon-mega {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .card-stats-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mini-stat strong {
        font-size: 0.9rem;
    }

    .mini-stat span {
        font-size: 0.75rem;
    }

    /* Compact "Our Story" section on mobile */
    .story-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .story-visual-card {
        padding: 1.25rem;
    }

    .story-visual-card h4 {
        font-size: 0.95rem;
    }

    .story-visual-card p {
        font-size: 0.85rem;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    /* Compact quote section */
    .story-quote-enhanced {
        padding: 1.5rem;
    }

    .quote-text-enhanced {
        font-size: 1rem;
    }

    /* Compact banner on mobile */
    .banner-content-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .banner-text {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .banner-divider {
        display: none;
    }

    .banner-highlight {
        font-size: 0.9rem;
    }

    .banner-main {
        font-size: 0.85rem;
    }
}
