/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #5122c8, #3b82f6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #5122c8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-orange {
    background: linear-gradient(135deg, #ea580c, #fb923c);
    color: white;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}

.btn-green:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

.btn-outline {
    background: transparent;
    color: #5122c8;
    border: 2px solid #5122c8;
}

.btn-outline:hover {
    background: #5122c8;
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #5122c8;
}

.btn-white {
    background: white;
    color: #5122c8;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Responsive Utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }
}


/* Logo */
.logo {
    height: 32px;
    width: auto;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-link2 {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link2:hover {
    color: #5122c8;
}

.nav-cta {
    display: flex;
    gap: 16px;
}

/* Mobile Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.mobile-btn {
    width: 100%;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 64px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.7));
}

.hero-slogan {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 10;
}

.slogan-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slogan-card p {
    color: #5122c8;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 32px;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-highlight {
    color: #fbbf24;
    display: block;
}

.hero-description {
    font-size: 20px;
    color: #bfdbfe;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 24px;
}

.slider-arrow-right {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-dot.active,
.slider-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #5122c8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.title-blue {
    color: #5122c8;
    display: block;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    position: relative;
    padding: 96px 24px;
    background: white;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.bg-circle-1 {
    top: 0;
    left: 0;
    width: 288px;
    height: 288px;
    background: #dbeafe;
    transform: translate(-144px, -144px);
}

.bg-circle-2 {
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: #fed7aa;
    transform: translate(192px, 192px);
    opacity: 0.3;
}

.about-grid {
    margin-bottom: 80px;
}

.about-features {
    display: flex;
    align-items: center;
    gap: 30px;
}
.services-list{
    width: 50%;
}
.about-visual{
    width: 50%;
}

.feature-cards {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-card {
    padding: 24px;
    border-radius: 16px;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-blue {
    background: #dbeafe;
    border-color: #bfdbfe;
    color: #F27A1A;
}

.feature-green {
    background: #d1fae5;
    border-color: #a7f3d0;
    color: #065f46;
}

.feature-orange {
    background: #fed7aa;
    border-color: #fdba74;
    color: #9a3412;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.services-list {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
}

.services-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.services-items {
    display: grid;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.service-item span {
    color: #374151;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #f3f4f6;
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.floating-card-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.floating-card-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, #bd5a0c, #F27A1A);
    border-radius: 24px;
    padding: 48px;
    color: white;
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #bfdbfe;
}

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

/* Comparison Section */
.comparison-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, white, #f8fafc);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.comparison-good {
    border-top: 4px solid #10b981;
}

.comparison-bad {
    border-top: 4px solid #ef4444;
    opacity: 0.9;
}

.comparison-header {
    padding: 32px;
    text-align: center;
    background: linear-gradient(180deg, #f0fdf4, white);
    padding-bottom: 0;
}

.comparison-bad .comparison-header {
    background: linear-gradient(180deg, #fef2f2, white);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.comparison-bad .comparison-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.comparison-subtitle {
    font-weight: 500;
    color: #10b981;
}

.comparison-bad .comparison-subtitle {
    color: #ef4444;
}

.comparison-features {
    padding: 32px;
    display: grid;
    gap: 16px;
}

.comparison-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.comparison-bad .comparison-feature {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.comparison-feature svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-bad .comparison-feature svg {
    color: #ef4444;
}

.comparison-feature p {
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.comparison-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.comparison-badge-bad {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.comparison-cta {
    text-align: center;
    background: linear-gradient(135deg, #be5d0e, #F27A1A);
    color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.comparison-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-cta p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #bfdbfe;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 600;
}

/* Success Stories */
.success-stories {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc, white);
}

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

.story-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    padding: 32px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    position: relative;
}

.story-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.story-growth-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.story-content {
    padding: 32px;
}

.story-info {
    text-align: center;
    margin-bottom: 16px;
}

.story-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.story-role {
    color: #5122c8;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.story-company {
    color: #6b7280;
    font-size: 0.875rem;
}

.story-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.story-quote {
    position: relative;
}

.story-quote svg {
    color: #bfdbfe;
    position: absolute;
    top: -8px;
    left: -4px;
}

.story-quote p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    padding-left: 24px;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.story-card:hover .story-quote p {
    color: #374151;
    opacity: 1;
}

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

.stories-cta p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Role Cards */
.role-cards {
    padding: 80px 24px;
    background: linear-gradient(180deg, white, #f8fafc);
}

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

.role-card {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
}

.role-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.role-popular {
    transform: scale(1.05);
    z-index: 10;
}

.role-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ea580c;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.role-badge-popular {
    background: #5122c8;
}

.role-badge-starter {
    background: #059669;
}

.role-header {
    padding: 32px;
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    text-align: center;
}

.role-popular .role-header {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.role-starter .role-header {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
}

.role-popular .role-icon {
    background: linear-gradient(135deg, #d76810, #F27A1A);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.role-starter .role-icon {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.role-card:hover .role-icon {
    transform: scale(1.1);
}

.role-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.role-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.role-advantages {
    padding: 32px;
}

.role-advantages h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-advantages h4 svg {
    color: #fbbf24;
}

.advantages-list {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.advantage-item svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-item span {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

.role-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    box-shadow: none;
}

.roles-info {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.info-items {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.info-item svg {
    color: #10b981;
}

/* Social Media Section */
.social-media {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc, white);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.social-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover .social-icon-box {
    transform: scale(1.1) rotate(6deg);
}

.social-icon svg {
    transition: all 0.3s ease;
}

.social-icon-box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;

}

.social-icon svg {
    color: #fff;
}

.social-whatsapp .social-icon-box {
    background: #37db52;
}
.social-facebook .social-icon-box {
    background: #1877f2;
}

.social-instagram .social-icon-box {
    background: #c32aa3;
}

.social-twitter .social-icon-box {
    background: #1da1f2;
}

.social-youtube .social-icon-box {
    background: #ff0000;
}

.social-linkedin .social-icon-box {
    background: #0a66c2;
}
.social-snapchat .social-icon-box {
    background: #fffc00;
}

.social-tiktok .social-icon-box {
    background: #010101;
}
.social-pinterest .social-icon-box {
    background: #bd081c;
}
.social-discord .social-icon-box {
    background: #5865f2;
}
.social-ok .social-icon-box {
    background: #0077b5;
}
.social-vk .social-icon-box {
    background: rgb(255, 119, 0);
}
.social-reddit .social-icon-box {
    background: #ff4500;
}
.social-telegram .social-icon-box {
    background: #0088cc;
}

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

.external-link {
    position: absolute;
    top: 8px;
    right: 8px;
    transition: opacity 0.3s ease;
    color: white;
    opacity: 0;
}

.external-link svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover .external-link {
    opacity: 1;
}


.social-icon span {
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
}

.social-icon:hover span {
    color: #1f2937;
}

.social-stats {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    padding: 32px;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.stat-followers,
.stat-engagement {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #bfdbfe;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.stat-followers:hover {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
    border-color: #60a5fa;
    transform: scale(1.05);
}

.stat-engagement {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: #a7f3d0;
}

.stat-engagement:hover {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    border-color: #34d399;
    transform: scale(1.05);
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: #5122c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 12px;
}

.stat-engagement .stat-icon {
    background: #10b981;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.stat-engagement .stat-label {
    color: #065f46;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-engagement .stat-number {
    color: #fff;
}

.engagement-metrics {
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: #f1f5f9;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.metric-item:nth-child(1):hover {
    background: #fef3c7;
    border-color: #fbbf24;
}

.metric-item:nth-child(2):hover {
    background: #e0e7ff;
    border-color: #8b5cf6;
}

.metric-item:nth-child(3):hover {
    background: #cffafe;
    border-color: #06b6d4;
}

.metric-item:nth-child(4):hover {
    background: #fce7f3;
    border-color: #ec4899;
}

.metric-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.metric-item:nth-child(1) .metric-icon {
    background: #f59e0b;
}

.metric-item:nth-child(2) .metric-icon {
    background: #8b5cf6;
}

.metric-item:nth-child(3) .metric-icon {
    background: #06b6d4;
}

.metric-item:nth-child(4) .metric-icon {
    background: #ec4899;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.social-cta {
    text-align: center;
    background: linear-gradient(135deg, #d76810, #F27A1A);
    color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.social-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.social-cta p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 24px;
}

.social-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: none;
}
.footer-social-link svg{
    width: 25px;
    height: 25px;
}

.footer-social-link:hover {
    background: #5122c8;
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-items {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
}

.contact-item svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

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

    .engagement-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .info-items {
        flex-direction: column;
        gap: 16px;
    }

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

@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
    }

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

    .hero-description {
        font-size: 1.125rem;
    }

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

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

    .section-description {
        font-size: 1rem;
    }

    .hero-slogan {
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 93%;
        text-align: center;
    }

    .slider-arrow-left {
        left: 16px;
    }

    .slider-arrow-right {
        right: 16px;
    }

    .slider-dots {
        bottom: 16px;
        right: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .engagement-metrics {
        grid-template-columns: 1fr;
    }

    .social-icons {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .comparison-cta h3 {
        font-size: 1.5rem;
    }

    .comparison-cta p {
        font-size: 1rem;
    }

    .social-cta h3 {
        font-size: 1.5rem;
    }

    .social-cta p {
        font-size: 1rem;
    }
}
.stat-icon svg{
    width: 20px;
    height: 20px;
}

.feature-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.feature-card{
    width: 33%;
}
@media only screen and (max-width: 768px) {
    .comparison-section, .success-stories, .role-cards,.about-section{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .social-icons {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-links, .footer-contact {
        text-align: left;
    }

    .feature-cards {
        width: 100%;
        flex-wrap: wrap;
    }

    .about-features{
        flex-wrap: wrap;
    }
    .feature-card {
        width: 100%;
    }
    .services-list{
        width: 100%;
    }
    .about-visual{
        width: 100%;
    }
}

.nav-link{
    padding: 0 !important;
}

.montera-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.montera-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.montera-product-image {
    position: relative;
    padding: 20px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.montera-product-image img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
}

.montera-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all .3s;
}

.montera-fav-btn i {
    color: #999;
}

.montera-fav-btn:hover i {
    color: #F27A1A;
}

.montera-product-body {
    padding: 18px;
    text-align: center;
}

.montera-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    min-height: 42px;
}

.montera-product-title:hover {
    color: #F27A1A;
}

.montera-product-price {
    margin: 10px 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: #F27A1A;
}

.montera-add-cart {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #F27A1A, #d76810);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}

.montera-add-cart i {
    margin-right: 6px;
}

.montera-add-cart:hover {
    opacity: 0.9;
}

.montera-puan-box {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #F27A1A, #d76810);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    z-index: 2;
}

