* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.huninn-regular {
    font-family: "Huninn", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Huninn", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
    color: white;
    overflow-x: hidden;
    direction: rtl;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #06b6d4;
}

.contact-btn {
    background: linear-gradient(45deg, #06b6d4, #10b981) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.contact-btn:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 50px;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 2s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #06b6d4;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 650px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #06b6d4, #10b981);
    color: white;
}

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
}

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

.robot-container {
    position: relative;
    width: 500px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot {
    width: 400px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: robotMorph 15s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.robot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #06b6d4, transparent);
    border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite, robotCoreMorphHome 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.feature-badge {
    position: absolute;
    background: rgba(6, 182, 212, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    left: -10px;
    animation-delay: 2s;
}

/* Background effects */
.bg-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), rgba(16, 185, 129, 0.05), transparent);
    animation: liveFloat 8s ease-in-out infinite;
    filter: blur(1px);
}

/* Organic blob shapes for different circles */
.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: liveFloat 8s ease-in-out infinite, morphBlob1 12s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 10%;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: liveFloat 10s ease-in-out infinite reverse, morphBlob2 15s ease-in-out infinite;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    border-radius: 49% 51% 48% 52% / 62% 34% 66% 38%;
    animation: liveBreathe 6s ease-in-out infinite, morphBlob3 10s ease-in-out infinite;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    border-radius: 73% 27% 44% 56% / 49% 68% 32% 51%;
    animation: liveFloat 12s ease-in-out infinite, morphBlob4 8s ease-in-out infinite;
    opacity: 0.6;
}

.circle-5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 20%;
    border-radius: 34% 66% 58% 42% / 63% 35% 65% 37%;
    animation: livePulse 4s ease-in-out infinite, morphBlob5 14s ease-in-out infinite;
    opacity: 0.8;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 50px 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Styles */
.agents-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
    overflow: visible;
}

.agent-slide {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.6, 1);
}

.agent-slide.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}

.agent-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.6, 1);
}

.agent-slide.active .agent-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.ai-robot {
    width: 250px;
    height: 350px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sales-robot {
    background: linear-gradient(145deg, #065f46, #047857);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.utils-robot {
    background: linear-gradient(145deg, #374151, #6b7280);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.support-robot {
    background: linear-gradient(145deg, #1e3a8a, #1d4ed8);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.robot-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    animation: robotPulse 3s ease-in-out infinite, robotCoreMorph 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.sales-robot .robot-core {
    background: radial-gradient(circle, #10b981, transparent);
    border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
}

.utils-robot .robot-core {
    background: radial-gradient(circle, #ffffff, transparent);
    border-radius: 43% 57% 71% 29% / 64% 36% 64% 36%;
}

.support-robot .robot-core {
    background: radial-gradient(circle, #3b82f6, transparent);
    border-radius: 37% 63% 48% 52% / 71% 29% 71% 29%;
}

.robot-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: robotScan 3s linear infinite;
}

.floating-message {
    position: absolute;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: messageFloat 4s ease-in-out infinite;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.6, 1);
    cursor: pointer;
}

.floating-message.msg-0 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    animation: messageFloat 4s ease-in-out infinite;
}

.floating-message.msg-0::after {
    content: 'התחל לדבר איתי';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.floating-message.msg-0:hover::after {
    opacity: 1;
}

.agent-slide.active .floating-message {
    opacity: 1;
    transform: translateY(0);
}

.agent-slide.active .msg-0 {
    transition-delay: 0.6s;
}

.agent-slide.active .msg-1 {
    transition-delay: 0.6s;
}

.agent-slide.active .msg-2 {
    transition-delay: 0.8s;
}

.agent-slide.active .msg-3 {
    transition-delay: 1s;
}

.floating-message.msg-0:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.msg-0 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.msg-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0.6s;
}

.msg-2 {
    bottom: 30%;
    right: -40px;
    animation-delay: 1.5s;
}

.msg-3 {
    bottom: 10%;
    left: -20px;
    animation-delay: 3s;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #06b6d4;
    transform: scale(1.2);
}

/* Chat Encouragement Section */
.chat-encouragement {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 30px;
    padding: 30px 40px;
    margin: 60px auto 50px;
    max-width: 800px;
    text-align: center;
    border: 2px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.chat-encouragement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.chat-cta-container {
    position: relative;
    z-index: 2;
}

.chat-encouragement h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-encouragement p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.chat-now-btn {
    background: linear-gradient(45deg, #06b6d4, #10b981);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.chat-now-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.chat-now-btn:hover .btn-arrow {
    transform: translateX(-5px);
}

.chat-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.benefit-item span:last-child {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 500;
}

/* Automation Solutions Section */
.automation-solutions-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    z-index: 3;
}
.automation-container {
    max-width: 1200px;
    margin: 0 auto;
}
.automation-intro {
    text-align: center;
    margin-bottom: 60px;
}
.automation-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.automation-intro p {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}
.solution-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solution-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}
.solution-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}
.solution-features {
    list-style: none;
    padding: 0;
}
.solution-features li {
    padding: 8px 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 25px;
}
.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}
.automation-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.automation-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.automation-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* About Us Section */
.about-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    z-index: 4;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.about-text-index .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #0f172a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text-index .section-header p {
    font-size: 2rem;
    color: #06b6d4;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-description h3 {
    background: linear-gradient(45deg, #0f172a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    margin-bottom: 50px;
}

.about-features h3 {
    background: linear-gradient(45deg, #0f172a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #06b6d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.about-robot {
    width: 250px;
    height: 300px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%;
    position: relative;
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
    overflow: hidden;
    animation: aboutRobotMorph 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.robot-core-about {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #06b6d4, transparent);
    border-radius: 47% 53% 71% 29% / 62% 38% 55% 45%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    animation: pulse 3s ease-in-out infinite, aboutCoreMorph 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.robot-glow-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: robotScan 4s linear infinite;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #25d366, #20c157);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #20c157, #1ea349);
}

.whatsapp-icon {
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
}

.whatsapp-text {
    white-space: nowrap;
    font-family: "Huninn", sans-serif;
}

/* Hide mobile buttons on desktop */
.mobile-bot-buttons {
    display: none;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 50px 50px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 3;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-section .section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.choice-card.featured {
    border: 2px solid rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.05);
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.choice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.choice-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.choice-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.choice-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.choice-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-mini {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
}

.stat-mini .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini .stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-top: 5px;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

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

.result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 10px;
}

.result-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 0.7rem;
    color: #b0b0b0;
    margin-top: 3px;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
}

.support-icon {
    font-size: 1.2rem;
}

.support-item span:last-child {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.comparison-section {
    margin-bottom: 60px;
    text-align: center;
}

.comparison-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-cell {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d0d0d0;
}

.comparison-header .comparison-cell {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: white;
}

.our-column {
    background: rgba(6, 182, 212, 0.1) !important;
    color: #06b6d4 !important;
    font-weight: 600;
}

.feature-name {
    text-align: right;
    font-weight: 500;
}

.guarantee-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.guarantee-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Technology & Integrations Section */
.technology-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    z-index: 2;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.tech-intro {
    text-align: center;
    margin: 60px 0 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.tech-intro p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.integration-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.integration-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.integration-item:last-child {
    border-bottom: none;
}

.integration-logo {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-name {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    flex-grow: 1;
}

.integration-status {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tech-feature {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(10px);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-feature h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.tech-feature p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.api-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 25px;
    padding: 50px 40px;
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.api-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.api-section p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.api-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.api-benefit {
    background: rgba(255, 255, 255, 0.8);
    color: #06b6d4;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Client Reviews Section */
.reviews-section {
    padding: 50px 50px 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    z-index: 2;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
    overflow: visible;
}

.review-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    gap: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.6, 1);
}

.review-slide.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}

.reviewer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 10px;
}

.reviewer-name {
    text-align: center;
    margin-bottom: 20px;
}

.reviewer-name h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.reviewer-name span {
    font-size: 1.1rem;
    color: #475569;
}

.review-content {
    max-width: 600px;
}

.review-content p {
    font-size: 1.3rem;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.reviews-dots {
    display: flex;
    gap: 15px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #06b6d4;
    transform: scale(1.2);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-bottom: 120px;
    margin-top: 80px;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.6, 1);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #06b6d4;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #06b6d4;
}

/* Company Info Section */
.footer-logo h3 {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #06b6d4;
    display: block;
    margin-bottom: 20px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Contact Info Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.95rem;
    color: #d0d0d0;
}

/* Quick Links Section */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    transform: translateY(-2px);
}

.social-icon span {
    font-size: 1.3rem;
}

.linkedin:hover { background: rgba(0, 119, 181, 0.2); }
.facebook:hover { background: rgba(24, 119, 242, 0.2); }
.instagram:hover { background: rgba(225, 48, 108, 0.2); }
.youtube:hover { background: rgba(255, 0, 0, 0.2); }
.whatsapp:hover { background: rgba(37, 211, 102, 0.2); }

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    direction: rtl;
}

.newsletter-input::placeholder {
    color: #b0b0b0;
}

.newsletter-input:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #06b6d4;
}

.separator {
    color: #666;
    font-size: 0.8rem;
}

/* Page Container */
.page-container {
    min-height: calc(100vh - 200px);
    padding: 50px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-bottom: 100px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1.1rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.member-bio {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-2px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.post-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #10b981;
}

/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.featured-post .post-image {
    height: 300px;
    font-size: 4rem;
}

.featured-post .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .post-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.featured-post .post-excerpt {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Newsletter Signup */
.newsletter-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 80px;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-section p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Blog post categories for filtering */
.blog-post[data-category="automation"] { }
.blog-post[data-category="ai"] { }
.blog-post[data-category="business"] { }
.blog-post[data-category="guides"] { }

.blog-post.hidden {
    display: none;
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 0.85; 
    }
}

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

@keyframes titleReveal {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.95);
        filter: blur(5px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0px) scale(1);
        filter: blur(0px);
    }
}

@keyframes robotMorph {
    0% { 
        border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
    }
    14.28% { 
        border-radius: 55% 45% 67% 33% / 58% 42% 61% 39%;
    }
    28.57% { 
        border-radius: 42% 58% 73% 27% / 61% 39% 44% 56%;
    }
    42.86% { 
        border-radius: 56% 44% 38% 62% / 44% 56% 67% 33%;
    }
    57.14% { 
        border-radius: 74% 26% 65% 35% / 33% 67% 58% 42%;
    }
    71.43% { 
        border-radius: 47% 53% 51% 49% / 65% 35% 47% 53%;
    }
    85.71% { 
        border-radius: 63% 37% 45% 55% / 48% 52% 59% 41%;
    }
    100% { 
        border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
    }
}

@keyframes robotCoreMorphHome {
    0% { 
        border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%;
    }
    16.66% { 
        border-radius: 47% 53% 71% 29% / 62% 38% 55% 45%;
    }
    33.33% { 
        border-radius: 39% 61% 45% 55% / 73% 27% 48% 52%;
    }
    50% { 
        border-radius: 64% 36% 52% 48% / 41% 59% 66% 34%;
    }
    66.66% { 
        border-radius: 76% 24% 67% 33% / 54% 46% 39% 61%;
    }
    83.33% { 
        border-radius: 43% 57% 59% 41% / 68% 32% 57% 43%;
    }
    100% { 
        border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%;
    }
}

@keyframes liveFloat {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1); 
        opacity: 0.3;
    }
    25% { 
        transform: translate(12px, -15px) scale(1.08); 
        opacity: 0.55;
    }
    50% { 
        transform: translate(-8px, -25px) scale(0.92); 
        opacity: 0.75;
    }
    75% { 
        transform: translate(-15px, -8px) scale(1.03); 
        opacity: 0.45;
    }
}

@keyframes liveBreathe {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.4;
        filter: blur(1px);
    }
    33% { 
        transform: scale(1.2) rotate(1.5deg); 
        opacity: 0.65;
        filter: blur(0.7px);
    }
    66% { 
        transform: scale(0.85) rotate(-0.8deg); 
        opacity: 0.85;
        filter: blur(1.3px);
    }
}

@keyframes livePulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.2;
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.7;
        box-shadow: 0 0 0 15px rgba(6, 182, 212, 0);
    }
}

@keyframes morphBlob1 {
    0% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    20% { border-radius: 52% 48% 62% 38% / 47% 53% 58% 42%; }
    40% { border-radius: 47% 53% 68% 32% / 34% 66% 49% 51%; }
    60% { border-radius: 38% 62% 35% 65% / 67% 33% 44% 56%; }
    80% { border-radius: 56% 44% 49% 51% / 48% 52% 63% 37%; }
    100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
}

@keyframes morphBlob2 {
    0% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    25% { border-radius: 48% 52% 45% 55% / 53% 47% 62% 38%; }
    50% { border-radius: 52% 48% 39% 61% / 65% 35% 44% 56%; }
    75% { border-radius: 71% 29% 53% 47% / 44% 56% 58% 42%; }
    100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
}

@keyframes morphBlob3 {
    0% { border-radius: 49% 51% 48% 52% / 62% 34% 66% 38%; }
    33% { border-radius: 42% 58% 55% 45% / 48% 52% 57% 43%; }
    66% { border-radius: 34% 66% 72% 28% / 49% 51% 45% 55%; }
    100% { border-radius: 49% 51% 48% 52% / 62% 34% 66% 38%; }
}

@keyframes morphBlob4 {
    0% { border-radius: 73% 27% 44% 56% / 49% 68% 32% 51%; }
    20% { border-radius: 58% 42% 62% 38% / 55% 45% 48% 52%; }
    40% { border-radius: 41% 59% 66% 34% / 72% 28% 64% 36%; }
    60% { border-radius: 58% 42% 31% 69% / 38% 62% 47% 53%; }
    80% { border-radius: 67% 33% 54% 46% / 55% 45% 59% 41%; }
    100% { border-radius: 73% 27% 44% 56% / 49% 68% 32% 51%; }
}

@keyframes morphBlob5 {
    0% { border-radius: 34% 66% 58% 42% / 63% 35% 65% 37%; }
    16.66% { border-radius: 42% 58% 47% 53% / 55% 45% 58% 42%; }
    33.33% { border-radius: 47% 53% 43% 57% / 48% 52% 51% 49%; }
    50% { border-radius: 61% 39% 72% 28% / 35% 65% 44% 56%; }
    66.66% { border-radius: 28% 72% 36% 64% / 59% 41% 67% 33%; }
    83.33% { border-radius: 54% 46% 61% 39% / 72% 28% 52% 48%; }
    100% { border-radius: 34% 66% 58% 42% / 63% 35% 65% 37%; }
}

@keyframes aboutRobotMorph {
    0% { border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%; }
    25% { border-radius: 42% 58% 45% 55% / 67% 33% 52% 48%; }
    50% { border-radius: 65% 35% 58% 42% / 38% 62% 65% 35%; }
    75% { border-radius: 48% 52% 71% 29% / 55% 45% 43% 57%; }
    100% { border-radius: 58% 42% 63% 37% / 49% 51% 67% 33%; }
}

@keyframes aboutCoreMorph {
    0% { border-radius: 47% 53% 71% 29% / 62% 38% 55% 45%; }
    33% { border-radius: 61% 39% 45% 55% / 48% 52% 67% 33%; }
    66% { border-radius: 38% 62% 59% 41% / 73% 27% 44% 56%; }
    100% { border-radius: 47% 53% 71% 29% / 62% 38% 55% 45%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes robotPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 0.85; 
    }
}

@keyframes robotCoreMorph {
    0% { 
        border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
    }
    16.66% { 
        border-radius: 55% 45% 67% 33% / 58% 42% 61% 39%;
    }
    33.33% { 
        border-radius: 42% 58% 73% 27% / 61% 39% 44% 56%;
    }
    50% { 
        border-radius: 56% 44% 38% 62% / 44% 56% 67% 33%;
    }
    66.66% { 
        border-radius: 74% 26% 65% 35% / 33% 67% 58% 42%;
    }
    83.33% { 
        border-radius: 47% 53% 51% 49% / 65% 35% 47% 53%;
    }
    100% { 
        border-radius: 68% 32% 59% 41% / 52% 47% 53% 48%;
    }
}

@keyframes robotScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes messageFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-15px) scale(1.05); 
        opacity: 1; 
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

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

    nav {
        justify-content: center;
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }

    .robot-container {
        width: 300px;
        height: 400px;
        margin-top: 50px;
    }

    .robot {
        width: 250px;
        height: 300px;
    }

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

    /* Mobile WhatsApp Button */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .mobile-bot-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        gap: 15px;
        z-index: 1000;
    }
    
    .bot-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, #8b5cf6, #a855f7);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
        animation: float 3s ease-in-out infinite;
        animation-delay: 0.5s;
    }
    
    .bot-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    }
    
    .whatsapp-chat {
        display: none;
    }
    
    .mobile-bot-buttons {
        display: flex;
    }

    .whatsapp-icon {
        font-size: 1.6rem;
    }

    /* About mobile responsiveness */
    .about-section {
        padding: 50px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text .section-header h2 {
        font-size: 2.5rem;
    }

    .about-robot {
        width: 200px;
        height: 250px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Solutions mobile responsiveness */
    .solutions-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin: 0 10px 20px 10px;
        padding: 0 10px;
    }

    .section-header p {
        margin: 0 10px 30px 10px;
        padding: 0 10px;
    }

    .agent-slide {
        padding: 30px 20px;
    }

    .agent-visual {
        height: 300px;
    }

    .ai-robot {
        width: 200px;
        height: 280px;
    }

    /* Chat encouragement mobile responsiveness */
    .chat-encouragement {
        padding: 40px 20px;
        margin: 50px auto 0;
    }

    .chat-encouragement h3 {
        font-size: 2rem;
    }

    .chat-encouragement p {
        font-size: 1.1rem;
    }

    .chat-now-btn {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 25px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        max-width: 300px;
        margin: 0 auto;
        line-height: 1.2;
    }
    .chat-now-btn .btn-text {
        font-size: 0.9rem;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .chat-now-btn .btn-icon {
        font-size: 1.1rem;
    }
    .chat-now-btn .btn-arrow {
        display: none;
    }

    .chat-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-item {
        flex-direction: row;
        gap: 12px;
    }

    /* Automation solutions mobile responsiveness */
    .automation-solutions-section {
        padding: 50px 20px;
    }
    .automation-intro h2 {
        font-size: 2rem;
    }
    .automation-intro p {
        font-size: 1.1rem;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .solution-card {
        padding: 30px 20px;
    }
    .automation-cta {
        padding: 40px 20px;
    }

    /* Why choose us mobile responsiveness */
    .why-choose-section {
        padding: 50px 20px;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .choice-card {
        padding: 30px 20px;
    }

    .choice-stats, .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .support-features {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 10px 8px;
    }

    .guarantee-section {
        padding: 30px 20px;
    }

    /* Technology mobile responsiveness */
    .technology-section {
        padding: 50px 20px;
    }

    .tech-intro h3 {
        font-size: 1.6rem;
    }

    .tech-intro p {
        font-size: 1rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .api-section {
        padding: 30px 20px;
    }

    .api-benefits {
        flex-direction: column;
        align-items: center;
    }

    /* Reviews mobile responsiveness */
    .reviews-section {
        padding: 50px 20px;
    }

    .review-slide {
        padding: 40px 20px;
    }

    .reviewer-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .reviewer-name h4 {
        font-size: 1.5rem;
    }

    .review-content p {
        font-size: 1.1rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer mobile responsiveness */
    .footer-container {
        padding: 0 20px;
    }

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

    .footer-section {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Page container mobile responsiveness */
    .page-container {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo {
        font-size: 20px;
    }

    /* Blog mobile responsiveness */
    .blog-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post .post-image {
        height: 200px;
        font-size: 3rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
}


/* Contact Hero Section */
.contact-hero {
    text-align: center;
    padding: 150px 50px 100px;
    position: relative;
    z-index: 5;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.4rem;
    color: #b0b0b0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Contact Information */
.contact-info-page {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.contact-method:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1rem;
    color: #d0d0d0;
    margin: 0;
}

.contact-details a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #10b981;
}

/* Business Hours */
.business-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item span:first-child {
    font-weight: 500;
    color: #e2e8f0;
}

.hour-item span:last-child {
    font-weight: 600;
    color: #06b6d4;
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    z-index: 2;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #0f172a, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.05);
    color: #06b6d4;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 300;
    color: #06b6d4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 30px;
}

.faq-answer p,
.faq-answer {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 50px;
    }

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

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-main {
        padding: 50px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .business-hours {
        padding: 20px;
    }

    .hour-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 50px 20px;
    }

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

    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* Blog Post Page Specific Styles */

/* Blog Post Container */
.blog-post-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    z-index: 5;
}

/* Blog Post Header */
.blog-post-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 60px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 20px;
}

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

.breadcrumb a:hover {
    color: #10b981;
}

.separator {
    margin: 0 10px;
    color: #666;
}

.current {
    color: #d0d0d0;
}

.post-meta-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.post-category-header {
    background: linear-gradient(45deg, #06b6d4, #10b981);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-date-header,
.post-read-time {
    color: #b0b0b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-featured-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-placeholder {
    font-size: 5rem;
    color: white;
}

/* Blog Post Content */
.blog-post-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.post-article {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-article h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 50px 0 25px 0;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-article h2:first-child {
    margin-top: 0;
}

.post-article h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin: 35px 0 20px 0;
}

.post-article h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #06b6d4;
    margin: 25px 0 15px 0;
}

.post-article p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-article ul,
.post-article ol {
    margin: 20px 0;
    padding-right: 25px;
}

.post-article li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(6, 182, 212, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.table-of-contents h3 {
    color: #06b6d4;
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.table-of-contents a:hover {
    color: #06b6d4;
    transform: translateX(-5px);
}

/* Info Box */
.info-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: #10b981;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 0;
    color: #d0d0d0;
}

/* Warning Box */
.warning-box {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid #f97316;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box h4 {
    color: #f97316;
    margin-top: 0;
    margin-bottom: 15px;
}

.warning-box p {
    margin-bottom: 0;
    color: #d0d0d0;
}

/* Stats Highlight */
.stats-highlight {
    display: flex;
    justify-content: space-around;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stats-highlight .stat-item {
    text-align: center;
}

.stats-highlight .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stats-highlight .stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Automation Areas Grid */
.automation-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.area-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.area-card h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.area-card ul {
    margin: 0;
    padding-right: 20px;
}

.area-card li {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Step by Step */
.step-by-step {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
}

.step-content p {
    margin-bottom: 15px;
    color: #d0d0d0;
}

.step-content ul {
    margin: 0;
    padding-right: 20px;
}

.step-content li {
    color: #d0d0d0;
    margin-bottom: 8px;
}

/* Success Stories */
.success-story {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.success-story h4 {
    color: #10b981;
    margin-top: 0;
    margin-bottom: 20px;
}

.success-story p {
    margin-bottom: 15px;
}

.success-story p:last-child {
    margin-bottom: 0;
}

.success-story strong {
    color: white;
}

/* Next Steps Grid */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

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

.next-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.next-step-card h4 {
    color: white;
    margin-bottom: 15px;
}

.next-step-card p {
    color: #d0d0d0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.cta-section h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 30px;
}

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

/* Sidebar */
.blog-post-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
}

.related-post-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #06b6d4, #10b981);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.related-post-content h4 {
    color: white;
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.related-post-date {
    color: #b0b0b0;
    font-size: 0.8rem;
}

/* Discussion CTA */
.discussion-cta {
    background: rgba(6, 182, 212, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.discussion-cta p {
    color: #d0d0d0;
    margin-bottom: 20px;
}

/* Newsletter Signup */
.newsletter-signup {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.newsletter-signup p {
    color: #d0d0d0;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Huninn', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: #06b6d4;
    border: 2px solid #06b6d4;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Huninn', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .blog-post-sidebar {
        position: static;
        top: auto;
    }
    
    .blog-post-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 20px;
    }
    
    .blog-post-content {
        padding: 30px 20px;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-subtitle {
        font-size: 1.1rem;
    }
    
    .post-meta-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .automation-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .blog-post-sidebar {
        padding: 20px;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post-image {
        align-self: center;
    }
}






 
   