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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F6F0;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background-color: #F9F6F0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #333;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.book-call-btn {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.book-call-btn:hover {
    background-color: #F1C232;
    transform: translateY(-1px);
}

.language-selector {
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.capabilities-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 0;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown:hover .capabilities-dropdown {
    opacity: 1;
    visibility: visible;
}

.capabilities-card {
    padding: 2rem;
}

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

.service-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #666 !important;
    font-size: 0.9rem;
}

.service-item i {
    color: #F5C842;
    font-size: 1rem;
    width: 16px;
}

.capabilities-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.all-services-btn:hover {
    color: #F5C842;
}

.contact-section {
    background-color: #2D3748;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.contact-text h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.book-call-now-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
}

.book-call-now-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
}

.contact-illustration {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.paper-plane {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5C842;
    font-size: 1.5rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #F5C842;
}

.breadcrumb i {
    color: #999;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Graphic Design Hero Section */
.graphic-hero-section {
    padding: 4rem 0;
    background-color: #F9F6F0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.demo-button {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.demo-button:hover {
    background-color: #F1C232;
    transform: translateY(-2px);
}

/* Hero Illustration */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.design-mockup {
    position: relative;
    z-index: 2;
}

.mockup-screen {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
}

.mockup-dots span:first-child {
    background-color: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background-color: #27ca3f;
}

.mockup-content {
    height: 100%;
    background-color: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.design-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

.element {
    border-radius: 8px;
    background: linear-gradient(45deg, #F5C842, #FF6B35);
    position: relative;
}

.element-1 {
    background: linear-gradient(45deg, #F5C842, #FF6B35);
}

.element-2 {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.element-3 {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.element-4 {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #F5C842, rgba(245, 200, 66, 0.3));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -30px;
    animation-delay: 2s;
    background: linear-gradient(45deg, #FF6B35, rgba(255, 107, 53, 0.3));
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -50px;
    animation-delay: 4s;
    background: linear-gradient(45deg, #667eea, rgba(102, 126, 234, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Dedicated Team Section */
.dedicated-team-section {
    padding: 4rem 0;
    background-color: #F9F6F0;
}

.team-header-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.team-stats-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-stat-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    min-width: 200px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.team-stat-card.yellow {
    background-color: #F5C842;
    color: #333;
}

.team-stat-card.orange {
    background-color: #FF6B35;
    color: white;
}

.team-stat-card .stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.team-stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-stat-card .stat-description {
    font-size: 1rem;
    line-height: 1.3;
    opacity: 0.9;
}

.team-title-section h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.team-title-section .highlight {
    background-color: #F5C842;
    color: #333;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-weight: 700;
}

.team-title-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.team-service-row {
    width: 100%;
}

.graphic-design-service-card {
    background: linear-gradient(135deg, #F5C842 0%, #FFA726 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(245, 200, 66, 0.2);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    width: fit-content;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.service-right {
    display: flex;
    justify-content: center;
}

.design-interface-mockup {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    min-width: 300px;
    max-width: 350px;
}

.interface-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.tab {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #F5C842;
    color: #333;
}

.interface-workspace {
    min-height: 180px;
}

.workspace-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: flex-start;
}

.design-canvas {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.design-canvas::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 70%, transparent 70%);
    border-radius: 4px;
}

.sidebar-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.color-swatches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.swatch.pink-1 {
    background-color: #ec4899;
}

.swatch.pink-2 {
    background-color: #f472b6;
}

.swatch.pink-3 {
    background-color: #be185d;
}

.swatch.pink-4 {
    background-color: #fce7f3;
}

.element-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fb923c;
}

.control-lines {
    flex: 1;
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #e5e7eb 60%, transparent 60%);
    background-size: 12px 3px;
    background-repeat: repeat-x;
    background-position: 0 50%;
    border-radius: 2px;
}

/* Mobile Responsiveness for Dedicated Team Section */
@media (max-width: 768px) {
    .team-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-stat-card {
        min-width: unset;
        width: 100%;
    }
    
    .team-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .team-text h2 {
        font-size: 2rem;
    }
    
    .graphic-service-card {
        padding: 1.5rem;
    }
    
    .service-mockup {
        justify-content: center;
        margin-top: 0;
    }
    
    .mockup-interface {
        min-width: 180px;
    }
    
    .design-preview {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .preview-card {
        width: 100%;
        height: 30px;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: #F9F6F0;
}

.stats-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-cards {
    display: flex;
    gap: 2rem;
}

.stat-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    min-width: 140px;
    text-align: center;
}

.stat-primary {
    background-color: #F5C842;
    color: #333;
}

.stat-secondary {
    background-color: #FF6B35;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
}

.stats-text {
    max-width: 500px;
}

.stats-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlight {
    background-color: #F5C842;
    color: #333;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.stats-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #F9F6F0;
}

.pricing-card {
    background: linear-gradient(135deg, #F5C842 0%, #FFA726 100%);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    box-shadow: 0 20px 40px rgba(245, 200, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.pricing-content {
    z-index: 2;
    position: relative;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.pricing-badge i {
    font-size: 0.8rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    font-size: 1rem;
}

.feature-item i {
    color: #333;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.features-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.design-workspace {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.workspace-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.workspace-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #F5C842;
    color: #333;
}

.workspace-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.design-canvas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    min-height: 200px;
}

.canvas-element {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    border-radius: 8px;
    padding: 0.75rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.canvas-element:hover {
    border-color: #F5C842;
    transform: translateY(-2px);
}

.banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.element-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.text-line {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    width: 80%;
}

.text-line.short {
    width: 60%;
}

.cta-button-mini {
    width: 40px;
    height: 16px;
    background-color: #F5C842;
    border-radius: 8px;
    margin-top: 0.25rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.social-post {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    border-radius: 4px;
    min-height: 20px;
}

.logo-design {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    height: 100%;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #F5C842 0%, #FF6B35 100%);
    border-radius: 50%;
}

.logo-text-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-line {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.logo-line:last-child {
    width: 20px;
}

.tools-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.tool-icon {
    width: 24px;
    height: 24px;
    background-color: #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tool-icon:hover {
    background-color: #F5C842;
}

.floating-design-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: floatDesign 8s ease-in-out infinite;
}

.element-a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #F5C842, rgba(245, 200, 66, 0.3));
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.element-b {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #667eea, rgba(102, 126, 234, 0.3));
    bottom: -15px;
    left: -15px;
    animation-delay: 3s;
}

.element-c {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #f093fb, rgba(240, 147, 251, 0.3));
    top: 50%;
    right: -30px;
    animation-delay: 6s;
}

@keyframes floatDesign {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(-8px) rotate(240deg) scale(0.9);
    }
}

/* Services Showcase Section */
.services-showcase-section {
    padding: 5rem 0;
    background-color: #F9F6F0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.showcase-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.15;
    max-width: 700px;
    text-align: left;
}

.see-examples-btn {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 1rem;
}

.see-examples-btn:hover {
    background-color: #F1C232;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F5C842 0%, #FF6B35 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

/* Specific icon colors for variety */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f093fb 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background-color: #F9F6F0;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.advantages-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    position: relative;
    z-index: 2;
    max-width: 280px;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantage-item i {
    color: #4CAF50;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.advantage-bar {
    height: 8px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 4px;
    flex: 1;
    position: relative;
}

.advantage-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 4px;
    width: 85%;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0%; }
    to { width: 85%; }
}

.hand-illustration {
    position: absolute;
    bottom: -20px;
    left: -40px;
    z-index: 3;
}

.thumb-up {
    width: 120px;
    height: 120px;
    position: relative;
}

.thumb {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #F5C842 0%, #FF6B35 100%);
    border-radius: 30px 30px 15px 15px;
    position: absolute;
    bottom: 0;
    left: 30px;
    transform: rotate(-15deg);
    box-shadow: 0 5px 15px rgba(245, 200, 66, 0.3);
}

.fingers {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    gap: 3px;
}

.finger {
    width: 20px;
    height: 50px;
    background: linear-gradient(135deg, #F5C842 0%, #FF6B35 100%);
    border-radius: 10px 10px 5px 5px;
    box-shadow: 0 3px 10px rgba(245, 200, 66, 0.2);
}

.finger:nth-child(2) {
    height: 55px;
    margin-top: -5px;
}

.finger:nth-child(3) {
    height: 52px;
    margin-top: -2px;
}

.finger:nth-child(4) {
    height: 45px;
    margin-top: 3px;
}

.floating-shapes-advantages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-adv {
    position: absolute;
    border-radius: 50%;
    animation: floatAdvantages 6s ease-in-out infinite;
}

.shape-adv.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, rgba(102, 126, 234, 0.3));
    top: -10px;
    right: -30px;
    animation-delay: 0s;
}

.shape-adv.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f093fb, rgba(240, 147, 251, 0.3));
    bottom: 20px;
    right: -20px;
    animation-delay: 2s;
}

.shape-adv.shape-3 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #4facfe, rgba(79, 172, 254, 0.3));
    top: 50%;
    left: -25px;
    animation-delay: 4s;
}

@keyframes floatAdvantages {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.advantages-text {
    max-width: 500px;
}

.advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.advantages-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.action-button {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-top: 1rem;
}

.action-button:hover {
    background-color: #F1C232;
    transform: translateY(-2px);
}

/* Company Description Section */
.company-description-section {
    padding: 5rem 0;
    background-color: #F9F6F0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.company-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.company-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.company-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.start-project-button {
    background-color: #F5C842;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.start-project-button:hover {
    background-color: #F1C232;
    transform: translateY(-2px);
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5C842 0%, #FFA726 100%);
    margin: 0 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}

.cta-action {
    flex-shrink: 0;
}

.cta-get-started-btn {
    background-color: white;
    color: #333;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-get-started-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: white;
    padding: 4rem 0 2rem;
}

/* .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
} */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.social-icon:hover {
    background-color: #F5C842;
    color: #333;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #F5C842;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-email,
.contact-phone {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-cta-button {
    background-color: #F5C842;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.footer-cta-button:hover {
    background-color: #F1C232;
    transform: translateY(-1px);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
}

.footer-badge {
    width: 60px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badge:hover {
    opacity: 1;
}

.footer-partners {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
}

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

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #F5C842;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-cards {
        justify-content: center;
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .design-workspace {
        min-width: auto;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .showcase-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .showcase-title {
        text-align: center;
        font-size: 2.4rem;
        max-width: 500px;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .advantages-text {
        order: -1;
    }
    
    .advantages-title {
        font-size: 2.2rem;
    }
    
    .company-title {
        font-size: 1.9rem;
    }
    
    .cta-section {
        margin: 0 1rem;
        padding: 3rem 0;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mockup-screen {
        width: 280px;
        height: 180px;
    }
    
    .stats-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .design-workspace {
        padding: 1rem;
    }
    
    .workspace-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .design-canvas {
        min-height: 150px;
    }
    
    .tools-panel {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-title {
        font-size: 2rem;
        max-width: 400px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .advantages-visual {
        justify-content: center;
    }
    
    .advantages-card {
        max-width: 240px;
    }
    
    .hand-illustration {
        left: -30px;
        bottom: -15px;
    }
    
    .thumb-up {
        width: 100px;
        height: 100px;
    }
    
    .thumb {
        width: 50px;
        height: 70px;
    }
    
    .finger {
        width: 18px;
        height: 45px;
    }
    
    .advantages-title {
        font-size: 1.8rem;
    }
    
    .company-title {
        font-size: 1.6rem;
    }
    
    .company-content {
        text-align: center;
    }
    
    .cta-section {
        margin: 0 0.5rem;
        padding: 2.5rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-get-started-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    /* .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    } */
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .mockup-screen {
        width: 240px;
        height: 150px;
        padding: 15px;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .design-workspace {
        padding: 0.75rem;
    }
    
    .design-canvas {
        gap: 0.5rem;
        min-height: 120px;
    }
    
    .canvas-element {
        padding: 0.5rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
        max-width: 300px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .advantages-card {
        max-width: 200px;
        padding: 1.5rem;
    }
    
    .hand-illustration {
        left: -20px;
        bottom: -10px;
    }
    
    .thumb-up {
        width: 80px;
        height: 80px;
    }
    
    .thumb {
        width: 40px;
        height: 60px;
        left: 20px;
    }
    
    .finger {
        width: 15px;
        height: 35px;
    }
    
    .advantages-title {
        font-size: 1.6rem;
    }
    
    .advantages-description {
        font-size: 0.9rem;
    }
    
    .company-title {
        font-size: 1.4rem;
    }
    
    .company-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-get-started-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column !important;
        padding: 4rem 1rem 2rem !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: stretch !important;
    }
    
    .navbar .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #F5C842 !important;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .capabilities-dropdown {
        width: 100% !important;
        max-height: none !important;
        padding: 0 !important;
    }
    
    .services-grid {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .service-column {
        width: 100% !important;
    }
    
    .service-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid #e0e0e0 !important;
        display: block !important;
        color: #555 !important;
        text-decoration: none !important;
    }
    
    .service-item:hover {
        background-color: #e8e8e8 !important;
    }
    
    .capabilities-actions {
        padding: 1rem !important;
        border-top: 1px solid #e0e0e0 !important;
        background: #f0f0f0 !important;
    }
    
    .contact-section {
        display: none !important;
    }
    
    /* Fix for nav links spacing in mobile */
    .navbar .nav-menu li {
        margin: 0 !important;
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .navbar .nav-menu .nav-link {
        display: block !important;
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        border-bottom: none !important;
        width: 100% !important;
    }
}