/* RESET & BASE STYLES */
:root {
    --primary: #3FC660;       /* Fresh Green (swapped) */
    --primary-dark: #2ba64a;
    --secondary: #2B9BB3;     /* Teal Blue (swapped) */
    --secondary-dark: #1f7b8e;
    --background: #FFFFFF;
    --bg-light: #F4FAFB;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --border-color: #E2E8F0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 20px rgba(63, 198, 96, 0.4);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 6rem 0;
}

/* Enhanced Backgrounds */
.bg-light {
    background: linear-gradient(135deg, rgba(63, 198, 96, 0.05), rgba(43, 155, 179, 0.05));
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

/* Utility Classes */
.mobile-break { display: none; }
.position-relative, .relative { position: relative !important; }
.z-10 { z-index: 10 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.max-w-700 { max-width: 700px !important; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    box-shadow: 0 0 20px rgba(43, 155, 179, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 155, 179, 0.2);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.home-page .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.home-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Vertically aligning the logo */
.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo img {
    display: block;
    max-height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .nav-btn {
    padding: 0.6rem 1.5rem;
    color: white !important; /* Ensure specific white color overriding global a styling */
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

/* HERO SECTION ENHANCED FOR LIGHT THEME */
.hero {
    padding: 12rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

/* Polka dot tech grid replaced with warped graph background */
.hero-grid-bg {
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: 
        linear-gradient(rgba(43, 155, 179, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 155, 179, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.8;
    z-index: 1;
    transform: perspective(1000px) rotateX(45deg) scale(1.5);
    transform-origin: center top;
    pointer-events: none;
}

/* Glowing mesh gradient orbs in background */
.hero-bg-blur1, .hero-bg-blur2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
}
.hero-bg-blur1 {
    width: 600px; height: 600px;
    background: rgba(63, 198, 96, 0.4);
    bottom: -100px; right: -200px;
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}
.hero-bg-blur2 {
    width: 500px; height: 500px;
    background: rgba(43, 155, 179, 0.3);
    top: -100px; left: -100px;
    animation: drift 15s ease-in-out infinite alternate;
}
@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 50px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Modern Pill Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(43, 155, 179, 0.1);
    border: 1px solid rgba(43, 155, 179, 0.2);
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.hero-tag span {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -1px;
}

.text-gradient {
    color: var(--primary);
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    display: inline-block;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Hero Pill Button */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    color: white;
    padding: 10px 10px 10px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}
.btn-pill:hover {
    color: white;
    background: rgba(63, 198, 96, 0.85); /* Slightly darker primary */
    box-shadow: 0 10px 25px rgba(63, 198, 96, 0.4);
    transform: translateY(-2px);
}
.btn-pill .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: #111;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
}
.btn-glow {
    box-shadow: 0 10px 20px rgba(63, 198, 96, 0.3);
}

/* Checkmarks Row */
.hero-checks {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}
.hero-checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-checks span i {
    color: #111;
    font-size: 1.3rem;
}

/* Dashboard Illustration (Now Image Component) */
.dashboard-illustration {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}
.image-layout {
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
}

.hero-image-wrapper {
    position: relative;
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Custom curved edges similar to the provided reference */
    border-radius: 90px 90px 40px 90px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.shape-blob {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #ade1c5; /* beautiful pastel green matching the reference */
    top: -10px;
    right: -10px;
    z-index: 1;
}

/* Floating Glass Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 40px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    z-index: 10;
    animation: hover-float 4s ease-in-out infinite alternate;
}

.dark-mode-card {
    background: #0f1011;
    color: white;
    border: 1px solid #1a1b1c;
    flex-direction: column;
    text-align: center;
    border-radius: 45px;
    padding: 2.2rem 1.8rem;
    gap: 0.8rem;
}
.dark-mode-card .fc-title { 
    color: white; 
    font-size: 1.1rem; 
    font-weight: 700; 
}
.dark-mode-card .fc-desc {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
}

.active-agents-card {
    top: 3vmin; left: -30px;
    animation-delay: 1s;
}
.revenue-card {
    bottom: 3vmin; right: -20px;
}

/* Users overlapping */
.fc-users {
    display: flex;
    align-items: center;
}
.fc-users img {
    width: 35px; height: 35px; border-radius: 50%; border: 3px solid white;
    margin-left: -10px;
}
.fc-users img:first-child { margin-left: 0; }
.fc-more {
    width: 35px; height: 35px; border-radius: 50%; border: 3px solid white;
    margin-left: -10px;
    background: #ade1c5;
    color: #111;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
}

.fc-icon {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #ade1c5;
    color: #111;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.fc-info { display: flex; flex-direction: column; }
.fc-val { font-size: 1.05rem; color: var(--text-main); font-weight: 700; display: flex; align-items: center; line-height: 1.2; }
.fc-val i { color: var(--primary); font-size: 1.2rem; }

@keyframes hover-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Floating Glass Icons */
.glass-icon {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid white;
}
.floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.hero-visual .icon-1 { top: 10%; right: -20px; animation-delay: 0s; color: var(--primary); }
.hero-visual .icon-2 { bottom: 15%; left: -40px; animation-delay: 1.5s; color: #ffbd2e; }
.hero-visual .icon-3 { top: -30px; left: 60%; animation-delay: 2s; color: var(--secondary); }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--secondary);
    animation: bounce 2s infinite;
}

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

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Adding colorful flair to skeleton image */
.about-visual::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--secondary);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
}

.skeleton-image {
    width: 80%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, white, var(--bg-light));
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(63, 198, 96, 0.2);
    z-index: 1;
}

/* Orbital Animation */
.orbit-container {
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    border: 2px dashed rgba(63, 198, 96, 0.2);
    animation: rotateOrbit 25s linear infinite;
    z-index: -1;
}

.orbit-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    /* Counter rotation to keep icons upright */
    animation: counterRotate 25s linear infinite;
}

.icon-chat { top: -32px; left: 50%; margin-left: -32px; color: var(--primary); }
.icon-support { top: 50%; right: -32px; margin-top: -32px; color: #ffbd2e; }
.icon-calendar { bottom: -32px; left: 50%; margin-left: -32px; color: #ff5f56; }
.icon-phone { top: 50%; left: -32px; margin-top: -32px; color: var(--secondary); }

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

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

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-title-small {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.feature-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.feature-list li:hover i {
    transform: scale(1.2);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(43, 155, 179, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism gradient background on hover */
.service-card::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(63,198,96,0.1) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.5s; z-index: 0; pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(43, 155, 179, 0.15);
    border-color: rgba(63, 198, 96, 0.5);
}

.service-icon {
    width: 65px; height: 65px;
    background: rgba(43, 155, 179, 0.1);
    border-radius: 50%; /* Using a circle instead of square block */
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary);
    margin-bottom: 1.5rem; transition: var(--transition);
    position: relative; z-index: 1;
}

.s-pulse {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid var(--primary); top: 0; left: 0;
    animation: iconPulseAnim 2s infinite cubic-bezier(0.1, 0.8, 0.2, 1);
}
@keyframes iconPulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.service-card:hover .service-icon {
    background: var(--primary); color: white;
    box-shadow: 0 10px 25px rgba(63, 198, 96, 0.4); transform: scale(1.1);
}
.service-card:hover .s-pulse { border-color: white; }

.service-card h3 { font-size: 1.2rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; }

/* CAPABILITIES SECTION - AI Animated Shimmer */
.capabilities-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 4rem;
}

.cap-item {
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
    padding: 1rem 1.8rem; border-radius: 50px; font-weight: 600; color: var(--text-main);
    box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.6rem;
    border: 1px solid rgba(43, 155, 179, 0.3); transition: var(--transition);
    position: relative; overflow: hidden;
}

.cap-item::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 198, 96, 0.3), transparent);
    animation: badgeShine 4s infinite linear; pointer-events: none;
}
@keyframes badgeShine { 0% { left: -100%; } 20%, 100% { left: 200%; } }

.cap-item i { color: var(--primary); font-size: 1.3rem; }
.cap-item:hover { transform: scale(1.08) translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow-md); color: var(--primary); }

/* Animated AI Pipeline Workflow */
.ai-workflow-visual {
    background: #0f172a; padding: 4rem 2rem; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); margin: 0 auto; max-width: 900px;
    position: relative; border: 1px solid rgba(43, 155, 179, 0.3); overflow: hidden;
}

.ai-line-container {
    position: absolute; top: 50%; left: 10%; right: 10%; height: 2px;
    background: rgba(255,255,255,0.1); transform: translateY(-50%); z-index: 0;
}
.ai-laser {
    position: absolute; top: -1px; left: 0; width: 100px; height: 4px;
    background: var(--primary); border-radius: 20px;
    box-shadow: 0 0 20px 5px rgba(63,198,96,0.6);
    animation: shootLaser 3s infinite linear;
}
@keyframes shootLaser {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes shootLaserVertical {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ai-nodes {
    display: flex; justify-content: space-between; position: relative; z-index: 1;
}

.ai-node {
    display: flex; flex-direction: column; align-items: center; gap: 1rem; color: rgba(255,255,255,0.7);
    font-weight: 500; font-family: var(--font-heading); font-size: 0.9rem;
}

.ai-icon {
    width: 70px; height: 70px; background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(43, 155, 179, 0.5); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white;
    backdrop-filter: blur(10px); transition: 0.3s;
}

.ai-highlight .ai-icon {
    border-color: var(--primary); background: rgba(63,198,96,0.1);
}
.ai-pulse-glow {
    box-shadow: 0 0 30px rgba(63,198,96,0.5);
    animation: breatheGlow 2s infinite alternate;
}
@keyframes breatheGlow {
    0% { box-shadow: 0 0 20px rgba(63,198,96,0.3); border-color: rgba(63,198,96,0.5); transform: scale(1); }
    100% { box-shadow: 0 0 40px rgba(63,198,96,0.8); border-color: var(--primary); transform: scale(1.1); }
}

.ai-node:hover .ai-icon { transform: scale(1.1); border-color: white; color: var(--primary); }
.ai-node:hover span { color: white; }

/* HOW IT WORKS - Modern Glass UI */
.steps-modern-container {
    display: flex; align-items: stretch; justify-content: center; gap: 1rem;
    max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) {
    .steps-modern-container { flex-direction: column; align-items: center; }
    .sm-connector { transform: rotate(90deg); margin: 1rem 0; }
}

.sm-card {
    flex: 1; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px);
    padding: 3rem 2rem; border-radius: 24px; position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04); border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
}
.sm-card:hover {
    transform: translateY(-12px); box-shadow: 0 25px 50px rgba(43, 155, 179, 0.12);
    border-color: rgba(63, 198, 96, 0.4); background: white;
}

.bg-number {
    position: absolute; right: -10px; bottom: -20px;
    font-size: 8rem; font-weight: 900; color: rgba(43, 155, 179, 0.05);
    font-family: var(--font-heading); line-height: 1; pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-text-stroke: 0px transparent;
}
.sm-card:hover .bg-number { 
    color: transparent;
    -webkit-text-stroke: 3px var(--primary);
    transform: translateY(-15px) scale(1.05);
    text-shadow: 0 0 20px rgba(63, 198, 96, 0.4);
}

.sm-icon {
    width: 65px; height: 65px; border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-size: 2rem; display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; box-shadow: 0 10px 20px rgba(63, 198, 96, 0.3);
}

.sm-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--text-main); position: relative; z-index: 1; }
.sm-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; margin: 0; }

.sm-connector {
    display: flex; align-items: center; justify-content: center;
    color: rgba(43, 155, 179, 0.2); font-size: 3rem;
}

/* SHOWCASE */
.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* CREATIVE ISO WRAPPER replaces .browser-mockup */
.creative-iso-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.iso-glow {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%; filter: blur(70px); opacity: 0.25; z-index: 0;
}
.iso-glow-primary { background: var(--primary); top: 5%; left: 15%; animation: floatGlow 8s infinite alternate; }
.iso-glow-secondary { background: var(--secondary); bottom: 5%; right: 5%; animation: floatGlow 6s infinite alternate-reverse; }

@keyframes floatGlow { 100% { transform: scale(1.4) translate(40px, -20px); } }

.iso-board {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    position: absolute;
    transform-style: preserve-3d;
    box-shadow: -15px 25px 40px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.5);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.creative-iso-wrapper:hover .iso-main {
    transform: rotateX(55deg) rotateZ(-40deg) translateY(-25px);
    box-shadow: -25px 55px 70px rgba(43,155,179,0.15);
}

.iso-main {
    width: 380px; height: 260px; z-index: 1;
    transform: rotateX(60deg) rotateZ(-45deg);
    display: flex; flex-direction: column; overflow: hidden; padding: 15px;
}

.iso-header {
    height: 30px; border-bottom: 2px dashed rgba(43,155,179,0.2);
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding-bottom: 10px;
}
.iso-logo { width: 50px; height: 12px; background: var(--primary); border-radius: 6px; opacity: 0.9; }
.iso-nav-lines { width: 80px; height: 8px; background: rgba(43,155,179,0.2); border-radius: 4px; }

.iso-body { display: flex; gap: 15px; flex: 1; }
.iso-sidebar { width: 60px; background: rgba(255,255,255,0.6); border-radius: 10px; border: 1px solid rgba(255,255,255,0.8); }

.iso-content { flex: 1; background: rgba(255,255,255,0.85); border-radius: 10px; display: flex; align-items: flex-end; padding: 15px; border: 1px solid white; box-shadow: 0 4px 15px rgba(0,0,0,0.02);}
.iso-chart-area {
    display: flex; width: 100%; height: 100px; align-items: flex-end; justify-content: space-between; gap: 10px;
    border-bottom: 2px solid rgba(63,198,96,0.2);
}
.iso-bar {
    width: 16%; background: linear-gradient(to top, rgba(63,198,96,0.7), rgba(43,155,179,0.7));
    border-radius: 3px 3px 0 0; animation: barGrow 2s infinite alternate ease-in-out;
}
@keyframes barGrow { 0% { transform: scaleY(0.7); opacity:0.8;} 100% { transform: scaleY(1); opacity:1;} }

.iso-widget {
    background: rgba(255, 255, 255, 0.85);
    transform: rotateX(60deg) rotateZ(-45deg) translateZ(40px);
    padding: 15px 20px; display: flex; align-items: center; gap: 15px;
}

.creative-iso-wrapper:hover .cw-1 {
    transform: rotateX(55deg) rotateZ(-40deg) translateZ(90px) translateX(-30px) translateY(-30px);
}
.creative-iso-wrapper:hover .cw-2 {
    transform: rotateX(55deg) rotateZ(-40deg) translateZ(80px) translateX(30px) translateY(30px);
}

.cw-1 { top: 10%; left: 0%; width: 220px; height: 80px; z-index: 3; animation: floatISO 4s infinite alternate ease-in-out; }
.cw-2 { bottom: 10%; right: -5%; width: 240px; height: 75px; z-index: 2; animation: floatISO 5s infinite alternate-reverse ease-in-out; }

@keyframes floatISO { 0% { margin-top: 0; } 100% { margin-top: -20px; } }

.iso-icon { font-size: 2.2rem; color: var(--secondary); background: rgba(43,155,179,0.1); padding: 8px; border-radius: 12px; }
.cw-lines { flex: 1; }
.cw-line { height: 8px; background: rgba(43,155,179,0.2); border-radius: 4px; margin-bottom: 6px; }
.cw-line.lg { width: 90%; background: var(--primary); }
.cw-line.sm { width: 60%; margin-bottom:0; }

.iso-avatar-stack { display: flex; margin-left: 10px; }
.iso-circle { width: 35px; height: 35px; border-radius: 50%; background: var(--secondary); margin-left: -15px; border: 3px solid white; box-shadow: 2px 0 8px rgba(0,0,0,0.1); }
.iso-circle:nth-child(2) { background: var(--primary); z-index: 1;}
.iso-circle:nth-child(3) { background: #cbd5e1; z-index: 2;}
.cw-text { font-size: 0.85rem; font-weight: 800; color: #1e293b; letter-spacing: 0.5px;}

.showcase-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* WHY CHOOSE LAMENE (Marquee Section) */
.dark-section {
    background: #0f172a; /* deep dark blue */
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
}

.dark-section::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    /* vertical streaks */
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 100px);
    z-index: 0;
}

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

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    display: flex;
}

/* Fades on the edges for a smooth scrolling effect */
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    100% { transform: translateX(-50%); }
}

.marquee-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 250px;
    margin-right: 2rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.marquee-card:hover {
    box-shadow: 0 0 40px rgba(63, 198, 96, 0.2);
    border-color: rgba(63, 198, 96, 0.3);
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: inset 0 0 30px rgba(43, 155, 179, 0.3);
    border: 1px solid rgba(43, 155, 179, 0.2);
    /* For the image reference 3D icon look, we give it a glowing dot behind */
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--primary), var(--secondary));
    filter: blur(20px);
    opacity: 0.5;
    z-index: 0;
}

.icon-circle i {
    font-size: 3rem;
    color: white;
    z-index: 1;
    position: relative;
    /* 3d-like glow */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.marquee-card:hover .icon-circle i {
    transform: scale(1.1);
}

.marquee-card h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* WHO CAN USE LAMENE */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: top 0.4s ease;
    z-index: 0;
}

.audience-card:hover::before {
    top: 0;
}

.audience-card h4 {
    margin: 0;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.audience-card:hover h4 {
    color: white;
}

/* TOOLS SECTION */
.tools-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tools-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tools-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tools-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.tools-list li:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: rgba(63, 198, 96, 0.3);
}

.tools-list li:hover i {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(43, 155, 179, 0.4);
}

/* Dashboard Mockup - Replaced .ui-panel */
.dashboard-mockup {
    width: 650px;
    height: 420px;
    background: #f8fafb;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
    .dashboard-mockup { width: 100%; transform: scale(0.9); transform-origin: left; }
}

.db-sidebar {
    width: 150px;
    background: white;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.db-logo {
    padding: 15px; font-weight: 800; font-size: 0.9rem; color: var(--secondary);
    display: flex; align-items: center; gap: 5px; border-bottom: 1px solid #eee;
}
.db-logo span {
    display: inline-block; width: 12px; height: 12px;
    background: var(--primary); border-radius: 3px;
}
.db-menu { list-style: none; padding: 10px 0; }
.db-menu li {
    padding: 10px 15px; font-size: 0.75rem; color: #666;
    display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s;
}
.db-menu li:hover, .db-menu li.active {
    background: rgba(43, 155, 179, 0.1); color: var(--secondary); border-right: 3px solid var(--secondary); text-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.db-menu li i { font-size: 1.1rem; }

.db-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.db-topbar {
    height: 45px; background: white; border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center; padding: 0 15px;
}
.db-search {
    font-size: 0.75rem; color: #999; display: flex; align-items: center; gap: 5px;
    background: #f0f4f8; padding: 6px 12px; border-radius: 15px;
}
.db-user-icons { display: flex; align-items: center; gap: 12px; color: #666; }
.db-avatar { width: 26px; height: 26px; background: var(--secondary); border-radius: 50%; }

.db-content { padding: 15px; flex: 1; display: flex; flex-direction: column; gap: 15px; min-width: 0; }

.db-header-banner {
    background: linear-gradient(135deg, #7b62ce, #5a42a0);
    border-radius: 8px; padding: 15px; color: white; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 8px 15px rgba(90, 66, 160, 0.3); min-width: 0; flex-wrap: wrap; gap: 10px;
}
.db-header-banner h3 { margin: 0; font-size: 1rem; color: white; }
.db-header-banner p { margin: 5px 0 0; font-size: 0.65rem; color: rgba(255,255,255,0.8); }
.export-btn {
    background: white; color: #5a42a0; font-size: 0.7rem;
    padding: 6px 12px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.export-btn:hover { background: #f0f0f0; transform: scale(1.05); }

.db-filters { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; min-width: 0; }
.filter label { font-size: 0.6rem; color: #888; display: block; margin-bottom: 3px; }
.filter .f-box {
    background: white; border: 1px solid #ddd; padding: 6px 10px;
    font-size: 0.65rem; border-radius: 4px; color: #333; min-width: 80px;
}
.apply-btn {
    background: #7b62ce; color: white; border-radius: 4px;
    padding: 7px 14px; font-size: 0.7rem; cursor: pointer; transition: background 0.2s;
}
.apply-btn:hover { background: #5a42a0; }

.db-stats { display: flex; gap: 15px; flex: 1; }
.stat-card {
    background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 15px; position: relative; overflow: hidden; border: 1px solid #eee;
}
.purple-card {
    background: linear-gradient(135deg, #826cd3, #6a53bd);
    color: white; width: 140px; display: flex; flex-direction: column; justify-content: center;
    border: none;
}
.purple-card h2 { margin: 5px 0 0; font-size: 2rem; color: white; }
.purple-card p { margin: 0; font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.purple-card i { position: absolute; top: 15px; right: 15px; font-size: 1.8rem; opacity: 0.3; }

.pulse-ring {
    position: absolute; width: 60px; height: 60px; background: rgba(255,255,255,0.15);
    border-radius: 50%; right: -15px; bottom: -15px;
    animation: dashPulse 2s infinite ease-out;
}
@keyframes dashPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.graph-card { flex: 1; display: flex; flex-direction: column; }
.graph-head {
    font-size: 0.7rem; color: #555; font-weight: 600; display: flex; align-items: center; justify-content: space-between;
}
.graph-head span { display: flex; align-items: center; gap: 5px; }

.animated-bars {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 4px;
    flex: 1; margin-top: 15px; padding-top: 10px; border-bottom: 1px solid #eee; position: relative;
}
.animated-bars::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    border-top: 1px dashed #eee; z-index: 0;
}
.b-bar {
    flex: 1; background: var(--secondary); border-radius: 2px 2px 0 0; z-index: 1;
    animation: growBar 2s ease-in-out infinite alternate; filter: drop-shadow(0 4px 6px rgba(43,155,179,0.3));
}
@keyframes growBar {
    0% { transform: scaleY(0.4); transform-origin: bottom; opacity: 0.7; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.bubble-float {
    animation: float 5s ease-in-out infinite;
}

/* TESTIMONIALS - Masonry Boxes */
.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.test-box {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(43, 155, 179, 0.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.test-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 45px rgba(43, 155, 179, 0.15);
    border-color: rgba(63, 198, 96, 0.4);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(43, 155, 179, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.test-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.t-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(63, 198, 96, 0.2);
}

.t-info h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--secondary);
}

.t-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA SECTION */
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(63, 198, 96, 0.05), rgba(43, 155, 179, 0.05));
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(63, 198, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(43, 155, 179, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(43, 155, 179, 0); }
    100% { box-shadow: 0 0 0 0 rgba(43, 155, 179, 0); }
}

/* FOOTER */
.footer {
    background: #1A1A1A;
    color: #e2e8f0;
    padding: 5rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}
.footer-logo img {
    display: block;
}

.about-col p {
    color: #94a3b8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: #94a3b8;
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
    transform: scale(1.1);
}
.social-links a:hover i {
    color: white !important;
}

.footer-bottom {
    background: #0f172a;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* Section 1 - About Hero */
.about-hero {
    background: #ffffff; padding: 12rem 0 6rem 0; text-align: left; overflow: hidden;
}
.about-glow-bg {
    position: absolute; top: 10%; left: 30%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(63, 198, 96, 0.15), transparent 70%);
    border-radius: 50%; filter: blur(40px); z-index: 0;
}
.about-shape {
    position: absolute; background: rgba(43, 155, 179, 0.1); border-radius: 50%; z-index: 0;
}
.float-shape-1 { width: 120px; height: 120px; top: 20%; right: 10%; animation: floatGlow 6s infinite alternate; }
.float-shape-2 { width: 200px; height: 200px; bottom: 5%; left: 5%; animation: floatGlow 8s infinite alternate-reverse; }

.about-hero-container { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-tagline { display: inline-block; padding: 8px 20px; background: rgba(63,198,96,0.1); color: var(--primary); border-radius: 30px; font-weight: 700; font-size: 0.9rem; margin-bottom: 25px; letter-spacing: 1px; text-transform: uppercase;}
.about-heading { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 25px; color: var(--text-main); }
.about-desc { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom:0; font-weight: 500;}
.about-image-wrapper { position: relative; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.about-main-img { width: 100%; border-radius: 20px; display: block;}
.float-badge { position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 25px; border-radius: 50px; font-weight: 700; color: #1a1a1a; box-shadow: 0 15px 30px rgba(63,198,96,0.15); display: flex; align-items: center; gap: 10px; animation: floatISO 4s infinite alternate; font-size: 0.95rem;}
.float-badge i { color: var(--primary); font-size: 1.6rem; }
.badge-tr { top: -25px; right: -25px; }
.badge-bl { bottom: -25px; left: -25px; animation-delay: 1s; }

/* Section 2 - Story & Vision (AI Redesign) */
.ai-story-section { background: #f4fafb; padding: 10rem 0; position:relative; overflow:hidden; min-height: 80vh; display: flex; align-items: center;}
.ai-bg-net { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: linear-gradient(rgba(63,198,96,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(63,198,96,0.05) 1px, transparent 1px); background-size: 50px 50px; z-index: 0; }
.story-container { display: flex; gap: 6rem; align-items: center; position:relative; z-index:2; flex-wrap: wrap;}
.story-content { flex: 1.2; }
.section-desc { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px;}
.glow-divider { width: 80px; height: 4px; background: var(--primary); border-radius: 4px; box-shadow: 0 0 15px rgba(63,198,96,0.6); margin: 20px 0 30px; }
.center-div { margin: 20px auto 30px; }

.ai-vision-node { position: relative; width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; }
.ai-orb-outer { position: absolute; width: 350px; height: 350px; border-radius: 50%; border: 2px solid rgba(43,155,179,0.2); border-top-color: var(--secondary); z-index: 0; }
.ai-orb-inner { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(63,198,96,0.08), transparent 60%); z-index: 0; box-shadow: inset 0 0 30px rgba(63,198,96,0.05);}
.spin-slow { animation: spin 20s linear infinite; }
.pulse-ring-slow { animation: breatheGlow 4s infinite alternate ease-in-out; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.ai-vision-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); padding: 40px; border-left: 6px solid var(--primary); border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 0 40px rgba(63,198,96,0.1); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; z-index: 5; text-align: left;}
.ai-vision-card p { margin:0; font-size:1.15rem; line-height: 1.8; color:#333; position:relative; z-index:2;}
.ai-vision-card strong { color: var(--primary); font-weight: 800; font-size: 1.25rem;}
.glow-hover:hover { box-shadow: 0 30px 60px rgba(63,198,96,0.2), inset 0 0 20px rgba(43,155,179,0.05); transform: translateY(-10px) scale(1.02); border-left-color: var(--secondary); }
.vision-icon { color: rgba(63,198,96,0.15); font-size: 8rem; position: absolute; right: -15px; top: -15px; z-index:1; transform: rotate(15deg) scale(1.2); pointer-events:none;}

/* Section 3 - Different (AI Redesign) */
.ai-diff-section { background: white; overflow: hidden; padding: 10rem 0; min-height: 90vh; display: flex; align-items: center;}
.ai-diff-title { font-size: 4.5rem !important; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 20px;}
.diff-particle-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: radial-gradient(rgba(43,155,179,0.1) 2px, transparent 2px); background-size: 40px 40px; z-index: 0; opacity: 0.6; }
.ai-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

.ai-diff-card { background: white; padding: 50px 40px 40px; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid rgba(43,155,179,0.1); transition: 0.5s; text-align: left; position: relative; overflow: hidden; }
.ai-card-glow { position: absolute; bottom: -50px; right: -50px; width: 150px; height: 150px; background: rgba(63,198,96,0.1); filter: blur(30px); border-radius: 50%; transition: 0.5s; z-index: 0; }
.ai-diff-card:hover .ai-card-glow { transform: scale(3); background: rgba(43,155,179,0.08); }
.ai-diff-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(63,198,96,0.12), inset 0 3px 0 var(--primary); border-color: transparent; }

.ai-icon-ring { position: relative; width: 80px; height: 80px; background: rgba(63,198,96,0.05); color: var(--primary); font-size: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 30px; transition: 0.4s; z-index: 2; box-shadow: inset 0 0 15px rgba(63,198,96,0.1);}
.spin-border { position: absolute; top: -5px; left: -5px; width: 90px; height: 90px; border: 2px dashed rgba(63,198,96,0.4); border-top-color: var(--primary); border-radius: 50%; animation: spin 10s linear infinite; opacity: 0.5; transition: 0.5s;}
.ai-diff-card:hover .ai-icon-ring { background: var(--primary); color: white; transform: scale(1.1); box-shadow: 0 15px 30px rgba(63,198,96,0.3);}
.ai-diff-card:hover .spin-border { opacity: 1; border: 2px dashed var(--secondary); top: -8px; left: -8px; width: 96px; height: 96px; animation-duration: 4s;}

.ai-diff-card h3 { font-size: 1.4rem; margin-bottom: 20px; color: var(--text-main); font-weight: 800; position: relative; z-index: 2; line-height: 1.3;}
.ai-diff-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin:0; position: relative; z-index: 2;}

/* Section 4 - Mission */
.mission-section { background: linear-gradient(135deg, var(--primary), #2B9BB3); color: white; padding: 10rem 0; overflow: hidden; position: relative;}
.mission-particles { position: absolute; width: 100%; height: 100%; top:0; left:0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.15"/></svg>'); z-index: 0; animation: floatGlow 30s linear infinite; }
.mission-content { max-width: 850px; margin: 0 auto; text-align: center;}
.mission-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 30px; color: white; font-family: var(--font-heading);}
.mission-desc { font-size: 1.25rem; line-height: 1.8; margin-bottom: 50px; color: rgba(255,255,255,0.95); font-weight: 500;}
.pulse-white-btn { background: white; color: var(--primary) !important; font-weight: 800; padding: 16px 45px; border-radius: 50px; display: inline-block; transition: 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.15); font-size:1.1rem;}
.pulse-white-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255,255,255,0.4); color: #2da148 !important; }

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* Hero Section */
.srv-hero { background: #0f172a; padding: 12rem 0 6rem 0; text-align: center; overflow: hidden; position: relative;}
.srv-hero-bg-glow { position: absolute; bottom: -10%; left: 50%; transform: translateX(-50%); width: 800px; height: 300px; background: radial-gradient(ellipse, rgba(63,198,96,0.2), transparent 70%); filter: blur(50px); z-index: 0; }
.srv-label { display: inline-block; padding: 8px 24px; background: rgba(63,198,96,0.1); color: var(--primary); border-radius: 30px; font-weight: 700; font-size: 0.95rem; margin-bottom: 25px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(63,198,96,0.3); box-shadow: 0 0 20px rgba(63,198,96,0.1); position: relative; z-index: 2;}
.srv-title { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 900; line-height: 1.15; margin-bottom: 25px; color: white; letter-spacing: -1px; position: relative; z-index: 2;}
.srv-desc { font-size: 1.25rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 500; max-width: 800px; margin: 0 auto; position: relative; z-index: 2;}
.srv-hero-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 4rem; position: relative; z-index: 2;}
.srv-float-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--secondary); }
.srv-float-icon:nth-child(even) { color: var(--primary);}
.srv-float-icon:hover { box-shadow: 0 20px 40px rgba(63,198,96,0.3); border-color: rgba(63,198,96,0.5); color: var(--primary); background: rgba(255,255,255,0.1); }

/* Core Grid - Sleek Layout */
.srv-core { background: #ffffff; padding: 8rem 0; position: relative;}
.srv-sleek-list { display: flex; flex-direction: column; gap: 0; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; padding: 0 20px;}
.srv-sleek-row { display: flex; align-items: center; gap: 40px; padding: 60px 0; border-bottom: 1px solid rgba(0,0,0,0.06); position: relative;}
.srv-sleek-row:last-child { border-bottom: none; }
.srv-sleek-row::before { content: ''; position: absolute; left: -20px; top: 0; width: 4px; height: 100%; background: var(--primary); border-radius: 4px; opacity: 0; }
.srv-sleek-row:hover::before { opacity: 1; }
.ssr-icon { width: 90px; height: 90px; flex-shrink: 0; background: transparent; color: var(--text-main); font-size: 3.5rem; display: flex; align-items: center; justify-content: center; z-index: 1; position: relative; }
.srv-sleek-row:hover .ssr-icon { color: var(--primary); }
.ssr-content { position: relative; z-index: 1; flex: 1;}
.ssr-content h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; color: var(--text-main); letter-spacing: -0.5px; }
.srv-sleek-row:hover .ssr-content h3 { color: var(--primary); }
.ssr-content p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 25px; max-width: 800px; }
.ssr-highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.ssr-highlights li { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: #333; font-weight: 600; padding: 5px 0; }
.ssr-highlights li:hover { color: var(--primary);}
.ssr-highlights i { color: var(--primary); font-size: 1.5rem; }

/* Workflow */
.srv-workflow { background: #f8fafb; padding: 10rem 0; overflow: hidden; border-top: 1px solid rgba(0,0,0,0.05);}
.workflow-horizontal { position: relative; padding: 60px 0; max-width: 1000px; margin: 0 auto;}
.wh-line { position: absolute; top: 90px; left: 5%; width: 90%; height: 6px; background: rgba(43,155,179,0.1); border-radius: 6px; z-index: 1; }
.wh-line-fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 6px; }
.wh-nodes-container { display: flex; justify-content: space-between; position: relative; z-index: 2;}
.wh-node { display: flex; flex-direction: column; align-items: center; position: relative; width: 140px; }
.wh-icon { width: 90px; height: 90px; background: white; border-radius: 50%; box-shadow: 0 15px 35px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--secondary); margin-bottom: 25px; border: 4px solid #f8fafb; position: relative; z-index: 3;}
.wh-node:hover .wh-icon { box-shadow: 0 20px 40px rgba(63,198,96,0.25); border-color: rgba(63,198,96,0.4); color: var(--primary); }
.wh-label { font-size: 1.05rem; font-weight: 800; color: var(--text-main); text-align: center; line-height: 1.3;}

/* Benefits */
.srv-benefits { background: #0f172a; color: white; padding: 10rem 0; overflow: hidden; position: relative; text-align: center;}
.srv-benefits::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 50%, rgba(43,155,179,0.15), transparent 70%); z-index: 0; pointer-events: none;}
.srv-benefit-particles { position: absolute; width: 100%; height: 100%; top:0; left:0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.1"/></svg>'); z-index: 0; }
.srv-benefit-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 50px; color: white; font-family: var(--font-heading); letter-spacing: -1px; position:relative; z-index:2;}
.srv-benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; position: relative; z-index: 2; text-align: left; }
.sb-item { font-size: 1.15rem; font-weight: 500; display: flex; align-items: center; justify-content: flex-start; gap: 15px; color: white; background: rgba(255,255,255,0.05); padding: 15px 30px; border-radius: 50px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); width: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.2);}
.sb-item i { font-size: 1.8rem; color: var(--primary); filter: drop-shadow(0 0 8px rgba(63,198,96,0.4)); margin-top: -2px;}
.sb-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(63,198,96,0.4); }

/* Animations & Responsiveness */
.zoom-in { opacity: 0; transform: scale(0.9); transition: all 0.8s ease; }
.slide-up { opacity: 0; transform: translateY(60px); transition: all 0.8s ease; }
.is-visible { opacity: 1; transform: none; }

/* RESPONSIVE DESIGN - Enhancements for Mobile */
@media (max-width: 992px) {
    .section { padding: 4rem 0; }
    .hero-container, .about-container, .showcase-container, .tools-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { max-width: 100%; margin: 0 auto 2rem auto; }
    .hero-buttons { justify-content: center; }
    
    .about-visual, .showcase-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .workflow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-steps .arrow {
        transform: rotate(90deg) !important;
        animation: slideDown 1.5s infinite linear !important;
    }
    
    @keyframes slideDown {
        0% { transform: translateY(-5px) rotate(90deg); opacity: 0.5; }
        50% { transform: translateY(5px) rotate(90deg); opacity: 1; }
        100% { transform: translateY(-5px) rotate(90deg); opacity: 0.5; }
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-line {
        width: 3px;
        height: 50px;
        flex: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Services Tab/Mobile */
    .srv-sleek-row { flex-direction: column; align-items: flex-start; text-align: left; gap: 20px; padding: 40px 0; }
    .ssr-icon { width: 60px; height: 60px; font-size: 2.5rem; justify-content: flex-start; }
    .ssr-content h3 { font-size: 1.8rem; }
    .ssr-highlights { grid-template-columns: 1fr; }
    .srv-benefit-list { grid-template-columns: 1fr 1fr; }
    
    .workflow-horizontal { padding: 20px 0; }
    .wh-nodes-container { flex-direction: column; align-items: center; gap: 50px; }
    .wh-node { width: 100%; }
    .wh-line { top: 0; left: 50%; width: 6px; height: 100%; transform: translateX(-50%); }
    .wh-line-fill { width: 100%; height: 0%; animation: drawLineVertical 3s ease forwards 0.5s; }
}

@keyframes drawLineVertical {
    to { height: 100%; }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Stronger mobile navigation design */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .hero {
        padding: 8rem 0 4rem 0;
    }
    
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 2rem; }
    
    .hero-buttons, .showcase-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn, .showcase-buttons .btn {
        width: 100%;
    }
    
    .capabilities-grid {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col ul {
        align-items: center;
    }

    /* Services Mobile Enhancements */
    .srv-hero { padding: 8rem 0 4rem 0; }
    .srv-title { font-size: 2.2rem; line-height: 1.3; }
    .srv-desc { font-size: 1.1rem; }
    .srv-hero-icons { justify-content: center; margin-top: 3rem; transform: scale(0.9); }
    .srv-float-icon { width: 60px; height: 60px; font-size: 2rem; border-radius: 15px; }
    
    .ssr-content h3 { font-size: 1.6rem; }
    .wh-icon { width: 75px; height: 75px; font-size: 2rem; }
    
    .srv-benefit-title { font-size: 2.5rem; }
    .srv-benefit-list { grid-template-columns: 1fr; gap: 20px; }
    .sb-item { font-size: 1.1rem; }
    
    /* How It Works Mobile */
    .hiw-hero { padding: 8rem 0 4rem 0; }
    .hiw-title { font-size: 2.2rem; line-height: 1.3; }
    .hiw-hero-icons { gap: 15px; transform: scale(0.9); }
    .hiw-steps { padding: 5rem 0; }
    .hiw-step-item { padding: 40px 0; }
    .hiw-step-point { left: 30px; width: 45px; height: 45px; font-size: 1.1rem; }
    .hiw-timeline-line, .hiw-timeline-fill { left: 30px; }
    .hiw-step-content { padding: 20px 20px 20px 80px; }
    .hiw-launch { padding: 5rem 0; }
    .hiw-launch-title { font-size: 2.5rem; line-height: 1.3; }
}

/* ANIMATION CLASSES FOR JS OBSERVER */

/* ==========================================================================
   HOW IT WORKS PAGE STYLES
   ========================================================================== */

/* Hero Section */
.hiw-hero { background: #ffffff; padding: 12rem 0 8rem 0; text-align: center; position: relative; overflow: hidden; }
.hiw-hero-bg-glow { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(63,198,96,0.08), transparent 70%); z-index: 0; pointer-events: none; }
.hiw-dot-pattern { position: absolute; top:0; left:0; width: 100%; height: 100%; background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px); background-size: 30px 30px; z-index: 0; pointer-events: none; }
.hiw-label { display: inline-block; padding: 6px 20px; background: rgba(63,198,96,0.1); color: #3FC660; border-radius: 30px; font-weight: 700; font-size: 0.85rem; margin-bottom: 25px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(63,198,96,0.2); position: relative; z-index: 2; }
.hiw-title { font-family: var(--font-heading); font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; color: #1A1A1A; letter-spacing: -1.5px; position: relative; z-index: 2;}
.hiw-desc { font-size: 1.25rem; color: #666; line-height: 1.7; max-width: 750px; margin: 0 auto; position: relative; z-index: 2; }

/* Floating Icons */
.hiw-hero-icons { display: flex; justify-content: center; gap: 30px; margin-top: 4rem; position: relative; z-index: 2; }
.hiw-float-icon { width: 70px; height: 70px; background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #3FC660; animation: hiwFloat 4s infinite alternate ease-in-out; }
@keyframes hiwFloat { from { transform: translateY(0); } to { transform: translateY(-15px); } }
.hiw-float-icon:nth-child(even) { animation-duration: 5s; animation-delay: 1s; color: #2B9BB3; }

/* 4-Step Vertical Timeline */
.hiw-steps { background: #F4FAFB; padding: 10rem 0; position: relative; overflow: hidden; }
.hiw-timeline-line { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: rgba(63,198,96,0.2); transform: translateX(-50%); z-index: 1; }
.hiw-timeline-fill { position: absolute; top: 0; left: 50%; width: 2px; height: 0%; background: #3FC660; transform: translateX(-50%); z-index: 2; }

.hiw-step-item { display: flex; align-items: center; justify-content: center; width: 100%; padding: 60px 0; position: relative; z-index: 3; }
.hiw-step-point { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: white; border: 4px solid #3FC660; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: #3FC660; box-shadow: 0 0 20px rgba(63,198,96,0.3); z-index: 10; transition: transform 0.3s ease; }
.hiw-step-item:hover .hiw-step-point { transform: translate(-50%, -50%) scale(1.1); }

.hiw-step-content { width: 45%; padding: 0 40px; }
.hiw-step-visual { width: 45%; padding: 0 40px; display: flex; align-items: center; justify-content: center; }

.hiw-step-item:nth-child(even) { flex-direction: row-reverse; }
.hiw-step-item:nth-child(even) .hiw-step-content { text-align: right; }
.hiw-step-item:nth-child(odd) .hiw-step-content { text-align: left; }

.hiw-step-item h3 { font-size: 2.5rem; font-weight: 800; color: #1A1A1A; margin-bottom: 20px; }
.hiw-step-item p { font-size: 1.15rem; color: #555; line-height: 1.7; }
.hiw-step-icons { display: flex; gap: 15px; margin-top: 25px; justify-content: flex-start; }
.hiw-step-item:nth-child(even) .hiw-step-icons { justify-content: flex-end; }
.hiw-step-icons i { font-size: 2rem; color: #3FC660; }

.hiw-visual-box { width: 100%; max-width: 400px; height: 250px; background: white; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.hiw-visual-placeholder { width: 80%; height: 60%; background: #F4FAFB; border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 2px dashed rgba(63,198,96,0.2); }

/* Workflow Diagram */
.hiw-workflow { background: #ffffff; padding: 10rem 0; text-align: center; }
.hiw-workflow-container { display: flex; align-items: center; justify-content: space-between; max-width: 1000px; margin: 4rem auto 0 auto; position: relative; gap: 20px; }

.hiw-wf-node { display: flex; flex-direction: column; align-items: center; width: 140px; position: relative; z-index: 2;}
.hiw-wf-icon { width: 80px; height: 80px; background: #3FC660; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.22rem; color: white; margin-bottom: 15px; box-shadow: 0 10px 20px rgba(63,198,96,0.2); transition: transform 0.3s ease; }
.hiw-wf-node:hover .hiw-wf-icon { transform: scale(1.1); background: #2B9BB3; box-shadow: 0 10px 20px rgba(43,155,179,0.2); }
.hiw-wf-label { font-size: 1rem; font-weight: 700; color: #1A1A1A; line-height: 1.2; }

.hiw-wf-line { flex: 1; height: 3px; background: #e0e0e0; position: relative; margin-top: -30px; z-index: 1;}
.hiw-wf-line-fill { width: 0%; height: 100%; background: #3FC660; }

/* Launch Section */
.hiw-launch { background: linear-gradient(135deg, #3FC660, #2B9BB3); padding: 8rem 0; text-align: center; color: white; position: relative; overflow: hidden; }
.hiw-launch-particles { position: absolute; top:0; left:0; width:100%; height:100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.2"/></svg>'); z-index: 0; }
.hiw-launch-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 30px; letter-spacing: -1px; position: relative; z-index: 2; color: #ffffff; }
.hiw-launch-desc { font-size: 1.3rem; line-height: 1.7; max-width: 800px; margin: 0 auto 3rem auto; opacity: 0.95; position: relative; z-index: 2; color: #ffffff; }
.hiw-launch .btn-white { background: white; color: #3FC660; padding: 18px 45px; border-radius: 50px; font-weight: 800; font-size: 1.2rem; display: inline-block; transition: all 0.3s ease; position: relative; z-index: 2; }
.hiw-launch .btn-white:hover { box-shadow: 0 0 30px rgba(255,255,255,0.6); transform: scale(1.05); }

/* Animation Overrides for HIW */
.reveal-hiw { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-hiw.active { opacity: 1; transform: translateY(0); }

/* Responsive HIW */
@media (max-width: 992px) {
    .hiw-title { font-size: 3rem; }
    .hiw-step-item, .hiw-step-item:nth-child(even) { flex-direction: column; text-align: left !important; }
    .hiw-step-content { width: 100%; padding: 20px 20px 20px 100px; }
    .hiw-step-visual { width: 100%; padding: 20px; }
    .hiw-timeline-line, .hiw-timeline-fill { left: 40px; }
    .hiw-step-point { left: 40px; width: 50px; height: 50px; font-size: 1.2rem; }
    .hiw-step-icons, .hiw-step-item:nth-child(even) .hiw-step-icons { justify-content: flex-start; }
    .hiw-workflow-container { flex-direction: column; gap: 40px; }
    .hiw-wf-line { display: none; }
}

/* ANIMATION CLASSES FOR JS OBSERVER (GLOBAL FIX) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}


/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

.pricing-section { background: #ffffff; padding: 12rem 0 8rem 0; text-align: center; position: relative; overflow: hidden; }
.pricing-bg-glow { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(63,198,96,0.1), transparent 70%); z-index: 0; pointer-events: none; }
.pricing-dot-pattern { position: absolute; top:0; left:0; width: 100%; height: 100%; background-image: radial-gradient(rgba(0,0,0,0.03) 2px, transparent 2px); background-size: 40px 40px; z-index: 0; pointer-events: none; }

.pricing-header { margin-bottom: 5rem; position: relative; z-index: 2; }
.pricing-header h2 { font-size: 3.5rem; font-weight: 900; color: #1A1A1A; margin-bottom: 15px; letter-spacing: -1px; }
.pricing-header p { font-size: 1.25rem; color: #666; max-width: 600px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; align-items: stretch; padding: 0 20px;}

.pricing-card { background: #F4FAFB; border-radius: 24px; padding: 50px 40px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-15px); box-shadow: 0 20px 45px rgba(0,0,0,0.08); }

.card-icon { width: 70px; height: 70px; background: white; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #3FC660; margin-bottom: 25px; box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.pricing-card h3 { font-size: 1.8rem; font-weight: 800; color: #1A1A1A; margin-bottom: 10px; }
.pricing-card p.setup-text { font-size: 1rem; color: #888; margin-bottom: 25px; font-weight: 500; }

.price-tag { font-size: 4.5rem; font-weight: 900; color: #3FC660; display: block; margin-bottom: 5px; line-height: 1; letter-spacing: -2px; }
.price-tag span { font-size: 1.2rem; font-weight: 600; color: #3FC660; margin-left: 10px; }

.feature-list { list-style: none; padding: 0; margin: 30px 0 40px 0; flex-grow: 1; overflow: hidden; }
.feature-list li { font-size: 1.05rem; color: #444; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feature-list li i { color: #3FC660; font-size: 1.3rem; flex-shrink: 0; }

.btn-pricing { width: 100%; padding: 16px 0; border-radius: 12px; font-weight: 800; font-size: 1.1rem; text-align: center; transition: all 0.3s ease; display: block; text-transform: uppercase; letter-spacing: 1px; }

.btn-outline-green { border: 2px solid #3FC660; color: #3FC660; }
.btn-outline-green:hover { background: #3FC660; color: white; box-shadow: 0 10px 20px rgba(63,198,96,0.3); }

.btn-solid-green { background: #3FC660; color: white; border: 2px solid #3FC660; }
.btn-solid-green:hover { background: #35a852; border-color: #35a852; box-shadow: 0 15px 30px rgba(63,198,96,0.4); transform: translateY(-2px); }

.btn-outline-teal { border: 2px solid #2B9BB3; color: #2B9BB3; }
.btn-outline-teal:hover { background: #2B9BB3; color: white; box-shadow: 0 10px 20px rgba(43,155,179,0.3); }

/* Highlight Card Style */
.pricing-card.highlighted { background: #ffffff; border: 2px solid #3FC660; transform: scale(1.05); box-shadow: 0 25px 60px rgba(63,198,96,0.15); z-index: 5; padding-top: 70px; }
.pricing-card.highlighted:hover { transform: scale(1.05) translateY(-10px); }

.pop-badge { position: absolute; top: 0; left: 0; width: 100%; height: 40px; background: #3FC660; color: white; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

/* Animation Overrides */
.zoom-in { opacity: 0; transform: scale(0.9); transition: all 1s ease; }
.zoom-in.active { opacity: 1; transform: scale(1.05); }

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pricing-card.highlighted { transform: scale(1); }
    .pricing-card.highlighted:hover { transform: translateY(-10px); }
    .zoom-in.active { transform: scale(1); }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-header h2 { font-size: 2.5rem; }
    .pricing-card { padding: 40px 30px; }
}

@media (max-width: 480px) {
    .pricing-card { padding: 30px 20px; }
    .pricing-card h3 { font-size: 1.5rem; }
    .price-tag { font-size: 3.5rem; }
    .feature-list li { font-size: 0.95rem; }
}

.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* CONTACT PAGE STYLES */
.contact-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.contact-hero {
    padding: 10rem 0 6rem 0;
    position: relative;
    background: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 198, 96, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 8s infinite alternate;
}

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

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(63, 198, 96, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Floating Icons */
.floating-icons .f-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    z-index: 1;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.contact-hero .icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.contact-hero .icon-2 { top: 15%; right: 12%; animation-delay: 1s; color: var(--secondary) !important; }
.contact-hero .icon-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.contact-hero .icon-4 { bottom: 25%; right: 10%; animation-delay: 0.5s; color: var(--secondary) !important; }

@keyframes floatAnim {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

.abstract-shape {
    position: absolute;
    background: rgba(63, 198, 96, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Main Section */
.contact-main {
    padding: 6rem 0;
    background: #F4FAFB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #FFFFFF;
    transition: var(--transition);
}

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

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
}

.select-wrapper i {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(63, 198, 96, 0.4);
    transform: translateY(-2px);
}

/* Office Info */
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(43, 155, 179, 0.1);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card:hover .icon-box {
    background: var(--secondary);
    color: #FFFFFF;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p, .info-card a {
    display: block;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #76e08f 100%);
    color: #FFFFFF;
}

.final-cta h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.btn-cta {
    background: #FFFFFF;
    color: var(--primary);
    padding: 1.2rem 2.8rem;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    color: var(--primary-dark);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-container, .about-container, .showcase-container, .tools-container { 
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content p, .about-content p, .showcase-content p { margin-left: auto; margin-right: auto; }
    .hero-visual, .about-visual, .showcase-visual { order: 2; }
    .hero-content, .about-content, .showcase-content { order: 1; }
    .hero-content h1 { font-size: 3rem; }
    .hero-checks { justify-content: center; }
    .hero-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    .nav-links.active { right: 0; }
    .menu-toggle { display: block; }
    
    .hero { padding: 8rem 0 4rem 0; text-align: center; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1rem; }
    .hero-visual { height: 400px; margin-top: 2rem; }
    .dashboard-illustration { height: 400px; }
    
    .floating-card { padding: 0.8rem 1rem; scale: 0.8; }
    .dark-mode-card { padding: 1.5rem 1.2rem; }
    .active-agents-card { left: 0; top: 0; }
    .revenue-card { right: 0; bottom: 0; }
    .hero-visual .icon-1, .hero-visual .icon-3 { display: none; }
    
    .section { padding: 4rem 0; }
    .section-header h2 { font-size: 2rem; }
    .mobile-break { display: block; }
    
    .feature-list { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .tools-list { grid-template-columns: 1fr; }
    
    .ai-nodes { flex-direction: column; gap: 2.5rem; }
    .ai-line-container {
        top: 10%; bottom: 10%; left: 50%; right: auto; width: 2px; height: 80%;
        transform: translateX(-50%);
    }
    .ai-laser {
        left: -1px; top: 0; width: 4px; height: 100px;
        animation: shootLaserVertical 3s infinite linear;
    }
    
    .sm-card { margin-bottom: 2rem; }
    .sm-connector { display: none; }
    .steps-modern-container { flex-direction: column; }
    
    .who-can-use .audience-grid { grid-template-columns: 1fr 1fr; }
    .tools-visual { display: none; }
    .testimonials-masonry { grid-template-columns: 1fr; }
    
    /* About Page Responsive Fixes */
    .about-hero-container { grid-template-columns: 1fr; text-align: center; }
    .about-hero-visual { order: -1; margin-bottom: 2rem; }
    .about-heading { font-size: 2.5rem; }
    .float-badge { padding: 8px 12px; font-size: 0.75rem; max-width: 90%; white-space: normal; text-align: center; }
    .badge-tr { right: 0; top: -15px; }
    .badge-bl { left: 0; bottom: -15px; }
    .story-container { flex-direction: column; gap: 3rem; }
    .ai-vision-node { width: 100%; max-width: 300px; height: 300px; margin: 0 auto; }
    .ai-orb-outer { width: 100%; height: 100%; max-width: 280px; }
    .ai-orb-inner { width: 100%; height: 100%; max-width: 320px; }
    .ai-vision-card { padding: 25px; width: 95%; max-width: 100%; box-sizing: border-box; }
    .ai-diff-grid { grid-template-columns: 1fr; gap: 20px; }
    .ai-diff-title { font-size: 2.5rem !important; margin-top: 2rem; }
    .mission-title { font-size: 2.5rem; }
    .mission-desc { font-size: 1.1rem; }
    
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    
    /* Contact Page Mobile */
    .contact-hero { padding: 8rem 0 4rem 0; }
    .contact-hero h1 { font-size: 2.5rem; line-height: 1.2; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .floating-icons .f-icon { display: none; }
}

@media (max-width: 480px) {
    .btn, .pulse-white-btn, .btn-pricing, .btn-white {
        white-space: nowrap !important;
        font-size: clamp(0.8rem, 4vw, 1rem) !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .btn-pill { width: 100%; justify-content: center; }
    .who-can-use .audience-grid { grid-template-columns: 1fr; }
    .footer-container { display: none; }
    .footer { padding-top: 0; }
    .final-cta h2 { font-size: 1.8rem; }
    
    /* Services Mobile Tweaks */
    .srv-hero { padding: 6rem 0 3rem 0; }
    .srv-title { font-size: 1.8rem; line-height: 1.3; margin-bottom: 15px; }
    .srv-desc { font-size: 1rem; line-height: 1.6; padding: 0 10px; }
    .srv-hero-icons { gap: 15px; }
    .srv-float-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .srv-sleek-row { padding: 30px 0; }
    .ssr-icon { width: 50px; height: 50px; font-size: 2rem; }
    .ssr-content h3 { font-size: 1.4rem; font-weight: 700; }
    .wh-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 10px; }
    .srv-benefit-title { font-size: 2rem; }
    .sb-item { font-size: 1rem; padding: 12px 20px; text-align: left; }
    
    /* How It Works Mobile Tweaks */
    .hiw-hero { padding: 7rem 0 2rem 0; }
    .hiw-title { font-size: 1.8rem; line-height: 1.3; margin-bottom: 20px; }
    .hiw-desc { font-size: 1rem; line-height: 1.6; padding: 0 10px; }
    .hiw-float-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .hiw-steps { padding: 3rem 0; }
    .hiw-step-item { padding: 20px 0; }
    .hiw-step-item h3 { font-size: 1.5rem; line-height: 1.3; }
    .hiw-step-item p { font-size: 1rem; }
    .hiw-step-point { left: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .hiw-timeline-line, .hiw-timeline-fill { left: 20px; }
    .hiw-step-content { padding: 20px 20px 20px 60px; }
    .hiw-launch-title { font-size: 1.8rem; line-height: 1.3; margin-bottom: 20px; }
    .hiw-launch-desc { font-size: 1rem; padding: 0 15px; }
    
    /* Contact Page Mobile Tweaks */
    .contact-hero { padding: 6rem 0 2rem 0; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero p { font-size: 1rem; padding: 0 10px; }
    .contact-main { padding: 3rem 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 2rem 1.5rem; }
    .contact-form-card h2 { font-size: 1.5rem; }
    .info-cards { gap: 1rem; }
    .info-card { padding: 1.2rem; gap: 1rem; }
    .info-card .icon-box { width: 40px; height: 40px; font-size: 1.2rem; }
    .info-card h3 { font-size: 1rem; }
}

@media (max-width: 768px) {
    .reveal-left, .reveal-right, .reveal-up {
        opacity: 1 !important;
        transform: translate(0) !important;
        transition: none !important;
    }
}

/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */
.blog-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}
.blog-hero {
    background: linear-gradient(135deg, #f4fafb 0%, #ffffff 100%);
    padding: 6rem 0 3rem;
    text-align: center;
}
.blog-category {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}
.blog-hero h1 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.meta-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.meta-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.blog-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 1000px;
}
.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Blog Body Elements */
.blog-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}
.blog-body .lead-text {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.blog-body h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.blog-quote {
    background: rgba(43, 155, 179, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 10px 10px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    position: relative;
}
.blog-quote .quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 15px;
    left: 15px;
}
.blog-list {
    margin: 2rem 0;
}
.blog-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
}
.blog-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}
.blog-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 4rem 0 2rem;
}
/* Footer content within blog */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.blog-tags .tag {
    background: rgba(63, 198, 96, 0.1);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    font-weight: 600;
}
.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog-share span {
    font-weight: 600;
}
.blog-share a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}
.blog-share a:hover {
    background: var(--secondary);
    color: white;
}
/* Author Box */
.author-bio-box {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    align-items: center;
    margin-bottom: 4rem;
}
.author-bio-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-bio-box h4 {
    margin-bottom: 5px;
}
.author-bio-box p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive tweaks for Blog */
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; padding: 0 15px; }
    .blog-body { font-size: 1.05rem; padding: 0 15px; }
    .blog-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
    .author-bio-box { flex-direction: column; text-align: center; }
}

.menetalk-iframe {
    min-height: 450px;
    height: auto;
}
@media (max-width: 768px) {
    .menetalk-iframe {
        min-height: 550px;
    }
}
@media (max-width: 480px) {
    .menetalk-iframe {
        min-height: 650px;
    }
}

/* NEW PRICING LAYOUT V2 */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 3rem auto 0;
    align-items: end;
}
.pricing-card-v2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 25px;
    transition: transform 0.3s ease;
}
.pricing-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.pc-header {
    text-align: center;
    padding: 30px 20px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.pc-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}
.pc-header-filled {
    background: linear-gradient(135deg, #1aa54b, var(--primary));
    text-align: center;
    padding: 40px 20px 20px;
    border-radius: 12px 12px 0 0;
}
.pc-header-filled h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
.popular-card {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    z-index: 5;
}
.popular-card:hover {
    transform: scale(1.03) translateY(-8px);
}
.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #117834;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
}
.pc-price-box {
    text-align: center;
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.pc-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}
.pc-price span {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-left: 5px;
}
.pc-setup {
    color: #2b7042;
    font-size: 0.95rem;
    font-weight: 600;
}
.pc-features {
    padding: 20px 30px;
    flex-grow: 1;
}
.pc-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
    font-size: 0.95rem;
}
.pc-features li:last-child {
    border-bottom: none;
}
.pc-features li strong {
    color: #111;
}
.pc-features i {
    color: var(--primary);
    font-size: 1.3rem;
}
.pc-btn-wrap {
    padding: 10px 30px;
    margin-top: auto;
}
.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1aa54b, var(--primary));
    color: #fff;
    padding: 14px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-primary-full:hover {
    box-shadow: 0 8px 20px rgba(63, 198, 96, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* RESPONSIVE CSS */
@media (max-width: 992px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .popular-card {
        transform: scale(1);
    }
    .popular-card:hover {
        transform: translateY(-8px);
    }
}
@media (max-width: 768px) {
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    .popular-card {
        transform: scale(1);
        margin-top: 15px;
    }
}
