:root {
  --primary: #02c008ff;
  --primary-dark: #2f7732ff;
  --accent: #88c489ff;
  --accent-dark: #6fb373ff;
  --dark: #263238;
  --dark-light: #37474F;
  --light: #f0f0f0ff;
  --gray: rgba(34, 34, 34, 1);
  --gray-light: #f0f0f0ff;
  --white: #FFFFFF;
  --success: #29702cff;
  --warning: #FBC02D;
  --error: #C62828;
  --afirst: rgba(165, 214, 167, 1);
  --asecond: rgba(76, 175, 80, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #123 0%, var(--dark-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-100px) translateX(100px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.80);
    border-radius: 15px 15px;
    font-size: 1.2rem;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #20df66ff , #2e82e9ff 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    margin-right: 1.7rem;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo {
    background: linear-gradient(135deg, #348efcff 10%, #22f770ff );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.bar {
    width: 26px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 39, 68, 0.95) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    list-style: none;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.mobile-menu .nav-link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.mobile-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #1a2744 50%, #0A1628 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

.hero-circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    25% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    50% { 
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% { 
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-content {
    max-width: 1280px;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3272adff, #388bd8ff);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Animation */
.typing {
    border-right: 3px solid #00ffff;
    animation: blink 0.7s step-end infinite;
    display: inline-block;
    margin-top: 6px;
    padding-left: 4px;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
    background-color: #1ebe5d;
}

/* Logo Styles */
.logosvg {
    width: 60px;
    height: 60px;
    margin-right: 5px;
}

.logosvgfooter {
    width: 100px;
    height: 100px;
    margin-right: 5px;
}

.logosvgloading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: logoExpand 1.5s ease-out forwards;
}

@keyframes logoExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 900;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 13, 0.5);
}

/* Utility Classes */
a {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        padding: 1rem;
        justify-content: space-between;
    }

    .logo {
        margin-left: 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Additional Component Styles */

/* Trust Section */
.trust-section {
    background: rgba(235, 235, 235, 1);
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.trust-title {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-stat {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.trust-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.trust-stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 7rem 2rem;
    background: rgba(230, 230, 230, 1);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

.section-title.servicesa, 
.section-description.servicesa {
    color: #1f1f1fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
    gap: 2.5rem;
    justify-content: center;
    scale: 0.89;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1.5);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark);
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    margin-top: 1.5rem;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 3rem 1rem;
    background: white;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
	scale: 0.9;
    
}

.team-grid > * {
    flex: 1 1 200px;
    max-width: 300px;
    margin-top:3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.team-member:hover {
    background: var(--light);
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* About Section */
.about {
    padding: 7rem 2rem;
    background: var(--light);
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    scale: 0.85;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.about-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s;
}

.about-image-wrapper:hover::before {
    opacity: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 7rem 2rem;
    background: rgba(209, 209, 209, 1);
}

.testimonials-grid {
    max-width: 1280px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 3rem;
    color: #123;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 7rem 2rem;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--dark);
    font-size: 1rem;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.05);
}

.faq-question:focus {
    outline: 2px solid rgba(90, 90, 90, 1);
    outline-offset: -2px;
    border-radius: 12px;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #123 10%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    scale: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.7rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.form-submit button:active {
    transform: translateY(0);
}

.form-submit button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
    display: block;
}

/* Footer */
.footer {
    background: #123;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    scale: 0.85;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #20df66ff , #2e82e9ff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-stats-overlay {
        position: static;
        margin-top: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: -4rem;
    }
    
    .team {
        padding: 1rem 0.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}
/* ========================================
   AI SECRETARY SECTION STYLES
   Tamamen izole ve çakışmasız stil kodları
   ======================================== */

.ai-secretary {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1144 50%, #2d1b69 100%);
    overflow: hidden;
    isolation: isolate;
}

.ai-secretary .ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ai-secretary .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.ai-secretary .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.ai-secretary .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

.ai-secretary .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

.ai-secretary .ai-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.ai-secretary .ai-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-secretary .section-header {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-secretary .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.ai-secretary .section-titleai {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-secretary .gradient-text-ai {
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: aiGradientShift 3s ease infinite;
}

@keyframes aiGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-secretary .section-descriptionai {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.ai-secretary .ai-hero-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 6rem 0;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
}

.ai-secretary .hero-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-secretary .hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.ai-secretary .hero-features-list {
    list-style: none;
    margin: 2rem 0;
}

.ai-secretary .hero-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.ai-secretary .hero-features-list li i {
    color: #8b5cf6;
    font-size: 1.2rem;
    min-width: 24px;
}

.ai-secretary .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.ai-secretary .btn-hero {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.ai-secretary .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.ai-secretary .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.ai-secretary .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.ai-secretary .btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.ai-secretary .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes aiPhoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.ai-secretary .phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1a1144, #2d1b69);
    border-radius: 45px;
    padding: 18px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    position: relative;
    animation: aiPhoneFloat 3s ease-in-out infinite;
}

.ai-secretary .phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: linear-gradient(135deg, #1a1144, #2d1b69);
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.ai-secretary .phone-mockup::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: 2;
}

.ai-secretary .phone-screen {
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    border-radius: 35px;
    padding: 3rem 1.8rem;
    overflow-y: auto;
    position: relative;
}

.ai-secretary .phone-screen::-webkit-scrollbar {
    width: 4px;
}

.ai-secretary .phone-screen::-webkit-scrollbar-track {
    background: transparent;
}

.ai-secretary .phone-screen::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 10px;
}

.ai-secretary .phone-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 2rem;
}

@keyframes aiAvatarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
}

.ai-secretary .ai-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    animation: aiAvatarPulse 2s ease-in-out infinite;
    color: white;
}

.ai-secretary .ai-avatar i {
    color: white;
}

.ai-secretary .phone-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
}

.ai-secretary .phone-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes aiStatusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ai-secretary .status-online {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 5px;
    animation: aiStatusBlink 2s infinite;
}

.ai-secretary .ai-conversation {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@keyframes aiMessageSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-secretary .ai-message {
    display: flex;
    animation: aiMessageSlide 0.5s ease;
}

.ai-secretary .ai-message.incoming {
    justify-content: flex-start;
}

.ai-secretary .ai-message.outgoing {
    justify-content: flex-end;
}

.ai-secretary .ai-message > div {
    max-width: 80%;
}

.ai-secretary .message-bubble {
    padding: 0.9rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.ai-secretary .incoming .message-bubble {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border-bottom-left-radius: 6px;
}

.ai-secretary .outgoing .message-bubble {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-bottom-right-radius: 6px;
}

.ai-secretary .message-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

@keyframes aiTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.ai-secretary .typing-indicator {
    display: flex;
    gap: 5px;
    padding: 1rem 1.2rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    width: fit-content;
}

.ai-secretary .typing-indicator span {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: aiTypingBounce 1.4s infinite;
}

.ai-secretary .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.ai-secretary .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.ai-secretary .ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 5rem 0;
}

.ai-secretary .ai-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ai-secretary .ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s;
}

.ai-secretary .ai-feature-card:hover::before {
    left: 100%;
}

.ai-secretary .ai-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.ai-secretary .ai-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

@keyframes aiIconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.ai-secretary .ai-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.5;
    animation: aiIconPulse 2s ease-in-out infinite;
}

.ai-secretary .ai-icon-wrapper i {
    position: relative;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8b5cf6, #f7b1d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-align: center;
    line-height: 80px;
}

.ai-secretary .ai-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.ai-secretary .ai-feature-card p {
    color: rgba(255, 255, 255, 0.81);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-secretary .ai-feature-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
}

.ai-secretary .ai-feature-stats i {
    color: #ec4899;
}

.ai-secretary .ai-stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 5rem 0;
    margin: 5rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.ai-secretary .ai-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.ai-secretary .ai-stat-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.ai-secretary .ai-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    display: block;
}

.ai-secretary .ai-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
}

.ai-secretary .ai-counter {
    color: #c5c5c5;
    display: inline-block;
}

.ai-secretary .ai-pricing-section {
    margin: 6rem 0;
    scale:0.9;
}

.ai-secretary .pricing-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: white;
}

.ai-secretary .ai-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-secretary .ai-price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.4s;
    position: relative;
}

.ai-secretary .ai-price-card.featured {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.5);
}

.ai-secretary .featured-badge {
    position: absolute;
    top: -18px;
    right: 25px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.ai-secretary .ai-price-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
}

.ai-secretary .ai-price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ai-secretary .price-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.ai-secretary .price-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
}

.ai-secretary .price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}

.ai-secretary .price-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-secretary .price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.ai-secretary .price-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.ai-secretary .price-features li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.ai-secretary .price-features i {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.ai-secretary .price-btn {
    width: 100%;
    padding: 1.3rem;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid #8b5cf6;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.ai-secretary .price-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

.ai-secretary .featured-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-color: transparent;
}

.ai-secretary .use-cases-section {
    margin: 6rem 0;
}

.ai-secretary .use-cases-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: white;
}

.ai-secretary .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ai-secretary .use-case-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.ai-secretary .use-case-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.ai-secretary .use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c5aefa;
}

.ai-secretary .use-case-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.ai-secretary .use-case-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.ai-secretary .ai-cta-section {
    margin-top: 6rem;
    padding: 5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
    text-align: center;
}

.ai-secretary .ai-cta-section h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.ai-secretary .ai-cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ai-secretary .ai-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* AI Secretary Responsive Styles */
@media (max-width: 1024px) {
    .ai-secretary .ai-hero-demo {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ai-secretary .hero-visual {
        order: -1;
    }

    .ai-secretary .ai-features-grid,
    .ai-secretary .ai-pricing-grid,
    .ai-secretary .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .ai-secretary .ai-price-card.featured {
        transform: scale(1);
    }

    .ai-secretary .ai-stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-secretary .ai-cta-section {
        padding: 3rem 2rem;
    }

    .ai-secretary .ai-cta-section h3 {
        font-size: 2rem;
    }

    .ai-secretary .ai-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ai-secretary {
        padding: 5rem 1.5rem;
    }

    .ai-secretary .section-titleai {
        font-size: 2.5rem;
    }

    .ai-secretary .ai-hero-demo {
        padding: 2.5rem;
    }

    .ai-secretary .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .ai-secretary .hero-cta-buttons {
        flex-direction: column;
    }

    .ai-secretary .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ai-secretary .ai-stats-section {
        grid-template-columns: 1fr;
    }

    .ai-secretary .ai-stat-number {
        font-size: 2.5rem;
    }

    .ai-secretary .phone-mockup {
        width: 240px;
        height: 480px;
    }
}



.ai-counter-text {
    font-size: 1.7rem;
    color: #e2adf7;
    align-items: center;
    
    
}