/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Brand Colors */
    --primary-color: #398FA1;
    --primary-dark: #2c7280;
    --primary-light: #4da5b7;
    
    /* Neutral Colors */
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.container-full {
    width: 100%;
    padding: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--gray-900);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Scroll Reveal Animation */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: box-shadow var(--transition-base);
    border-bottom: 1px solid var(--gray-100);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 40px;
}

/* Logo */
.logo-placeholder {
    width: 180px;
    aspect-ratio: 16/9;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 1px;
    overflow: hidden;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

/* Navigation Menu */
.nav-menu{
    display:flex;
    list-style:none;
    gap:40px;
    margin-left:auto;
    margin-right:30px;   /* adjust this value */
    flex:none;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(57, 143, 161, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-top: 24px;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(57, 143, 161, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 143, 161, 0.4);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Hero Media Placeholder */
.hero-media {
    animation: fadeInRight 0.8s ease 0.2s backwards;
}

.media-placeholder {
    width: 100%;
    /* aspect-ratio: 16/9; */
    /* background: linear-gradient(135deg, var(--gray-100), var(--gray-50)); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px dashed var(--gray-300); */
    position: relative;
    overflow: hidden;
}

.media-placeholder img {
    padding-top: 20px;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 18px;
}

/* .media-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(57, 143, 161, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
} */

.placeholder-content {
    text-align: center;
    color: var(--gray-400);
    z-index: 1;
}

.placeholder-content svg {
    margin-bottom: 12px;
    color: var(--gray-300);
}

.placeholder-content p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   HERO SECTION - CIRCULAR MOTION ANIMATION
   ============================================ */

.hero-media {
    animation: fadeInRight 0.8s ease 0.2s backwards;
    /* Remove the parallax transform that was applied via JS */
    transform: none !important;
}

.hero-media .media-placeholder {
    /* animation: rotateInPlace 20s linear infinite; */
    animation: rotateInPlace 40s linear infinite;
}
/* Circular Motion Keyframes */
@keyframes rotateInPlace {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Alternative: Smooth Circular Path (More Natural) */
@keyframes circularMotionSmooth {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(40px, -20px);
    }
    50% {
        transform: translate(30px, 30px);
    }
    75% {
        transform: translate(-40px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Alternative: Perfect Circle Path */
@keyframes circularMotionPerfect {
    0% {
        transform: translateX(0px) translateY(-40px);
    }
    25% {
        transform: translateX(40px) translateY(0px);
    }
    50% {
        transform: translateX(0px) translateY(40px);
    }
    75% {
        transform: translateX(-40px) translateY(0px);
    }
    100% {
        transform: translateX(0px) translateY(-40px);
    }
}

/* Alternative: Floating Circular Motion (Most Popular) */
@keyframes floatingCircular {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.02);
    }
    50% {
        transform: translate(0, -40px) scale(1.05);
    }
    75% {
        transform: translate(-20px, -20px) scale(1.02);
    }
}
/* ============================================
   OUR CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.logo-scroll-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: #4B5563;
}

.logo-row {
    /*  overflow: hidden; */
    position: relative;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scrollLeft 30s linear infinite;
}

.logo-row[data-direction="right"] .logo-track {
    animation: scrollRight 30s linear infinite;
}

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

/* ============================================
   OUR CLIENTS SECTION - CAROUSEL LOGOS
   ============================================ */

.client-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(57, 143, 161, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid rgba(57, 143, 161, 0.1);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.client-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(57, 143, 161, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .client-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}


/* ============================================
   OUR SERVICES SECTION - HORIZONTAL SCROLL (PINNED FOR ALL)
   ============================================ */
.services-section {
    padding: 0;
    background: var(--gray-50);
    position: relative;
    /* Height will be set by JavaScript */
    min-height: 100vh;
}

.services-section-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.services-horizontal-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-horizontal-container {
    overflow: hidden;
    cursor: grab;
    padding: 0;
}

.services-horizontal-container:active {
    cursor: grabbing;
}

.services-horizontal-track {
    display: flex;
    gap: 32px;
    padding: 0 max(32px, calc((100vw - 1280px) / 2));
    will-change: transform;
}

/* Service Card Horizontal */
.service-card-horizontal {
    min-width: 350px;
    width: 350px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(57, 143, 161, 0.2);
}

.service-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-horizontal:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Scroll Indicators */
.services-horizontal-wrapper::before,
.services-horizontal-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-horizontal-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-50), transparent);
}

.services-horizontal-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-50), transparent);
}

.services-horizontal-wrapper.show-left-fade::before {
    opacity: 1;
}

.services-horizontal-wrapper.show-right-fade::after {
    opacity: 1;
}

/* Mobile Responsive - ALSO PINNED */
@media (max-width: 768px) {
    .services-horizontal-wrapper::before,
    .services-horizontal-wrapper::after {
        width: 60px;
    }
    
    .service-card-horizontal {
        min-width: 280px;
        width: 280px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 1.15rem;
    }
    
    .service-card-content p {
        font-size: 0.9rem;
    }
    
    .services-horizontal-track {
        padding: 0 20px;
        gap: 20px;
    }
}

/* ============================================
   REACH360 SECTION
   ============================================ */
.reach360-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.reach360-media .media-placeholder {
    aspect-ratio: 1;
    border-radius: 20px;
}

.reach360-media .media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reach360-content {
    padding: 20px 0;
}

.reach360-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.reach360-content .section-title::after {
    left: 0;
    transform: none;
}

.reach360-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    margin-top: 16px;
}

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

/* ============================================
   SALESFORCE PARTNER SECTION
   ============================================ */
.salesforce-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.salesforce-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.salesforce-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.salesforce-content .section-title::after {
    left: 0;
    transform: none;
}

.salesforce-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.salesforce-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.salesforce-badge {
    aspect-ratio: 1;
}

.salesforce-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* ============================================
   TESTIMONIALS SECTION - BLACK SQUARE CARDS
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    /* overflow: hidden; */
      box-shadow: 0 8px 30px rgba(57, 143, 161, 0.4);
    border-color: var(--primary-color);
}

.testimonials-scroll {
    overflow: hidden;
    margin-top: 60px;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: scrollTestimonials 40s linear infinite;
}

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

.testimonial-card {
    width: 400px;
    height: 400px;
    background: #0A0A0A;
    border: 1px solid #1F1F1F;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-base);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 8px 30px rgba(57, 143, 161, 0.4);
    border-color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #E5E7EB;
    line-height: 1.8;
    flex: 1;
    font-style: italic;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #1F1F1F;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: #9CA3AF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        height: 320px;
        padding: 28px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        -webkit-line-clamp: 6;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 280px;
        height: 280px;
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }
}
/* ============================================
   FOLLOW US SECTION
   ============================================ */
.follow-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all var(--transition-base);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.social-icon:hover {
    color: var(--white);
    border-color: transparent;
    transform: scale(1.15) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo-placeholder {
    width: 200px;
    margin: 0 auto;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); */
}

.footer-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

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

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero-grid,
    .reach360-grid,
    .salesforce-grid {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .navbar {
        padding: 16px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-grid,
    .reach360-grid,
    .salesforce-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Clients */
    .client-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .logo-track {
        gap: 24px;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-call {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 24px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}


/* Header Call Icon  */

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* cursor circle  */


.cursor-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;

    background: rgba(57, 143, 161, 0.25);

    border: 1px solid rgba(57, 143, 161, 0.6);

    position: fixed;
    top: 0;
    left: 0;

    pointer-events: none;

    backdrop-filter: blur(4px);

    transform: translate(-50%, -50%);

    z-index: 9999;

    transition:
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 560px;
    margin: -30px auto 50px;
}

.pricing-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-badge {
    display: inline-block;
    background: rgba(57, 143, 161, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: var(--font-display);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--gray-900);
}

.pricing-currency {
    font-size: 1.75rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 8px;
}

.pricing-value {
    font-size: clamp(2.75rem, 6vw, 3.75rem);
    font-weight: 800;
}

.pricing-period {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-left: 6px;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 32px;
    margin-bottom: 40px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

.pricing-cta {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .pricing-card {
        padding: 32px 24px;
    }
    .pricing-features {
        grid-template-columns: 1fr;
    }
}