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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.nav-logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FF6B35;
    transition: width 0.3s ease;
}

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

.cta-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Professional Redesign */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #fff9f7 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Content Column */
.hero-content-wrapper {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-headlines {
    margin-bottom: 48px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.95;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-title-2 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.95;
    color: #1a1a1a;
    margin: 8px 0 32px 0;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    max-width: 520px;
    font-weight: 400;
}

/* CTA Section */
.hero-cta-section {
    margin-bottom: 60px;
}

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

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    position: relative;
}

.avatar:first-child {
    margin-left: 0;
}

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

.avatar-2 {
    background: linear-gradient(45deg, #4A90E2, #7AB8FF);
}

.avatar-3 {
    background: linear-gradient(45deg, #50C8A3, #7FFFD4);
}

.avatar-count {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
    margin-left: -12px;
    border: 3px solid white;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.proof-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

/* Visual Column */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Main Visual Card */
.main-visual-card {
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

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

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.card-dots span:nth-child(1) {
    background: #FF6B35;
}

.card-dots span:nth-child(2) {
    background: #FFE066;
}

.card-dots span:nth-child(3) {
    background: #50C8A3;
}

.card-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Team Illustration */
.team-illustration {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 20px 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: gentle-bob 3s ease-in-out infinite;
}

.member-1 {
    animation-delay: 0s;
}

.member-2 {
    animation-delay: 1s;
    transform: scale(1.1);
}

.member-3 {
    animation-delay: 2s;
}

.member-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-avatar {
    width: 60px;
    height: 60px;
}

.yellow-avatar {
    background: linear-gradient(135deg, #FFE066, #FFC107);
}

.blue-avatar {
    background: linear-gradient(135deg, #4A90E2, #2196F3);
}

.green-avatar {
    background: linear-gradient(135deg, #50C8A3, #4CAF50);
}

.member-role {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.member-laptop {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #333;
    border-radius: 3px;
}

.member-laptop::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 30px;
    height: 15px;
    background: #555;
    border-radius: 3px 3px 0 0;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float-gentle 4s ease-in-out infinite;
}

.analytics-card {
    top: 15%;
    right: -10%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    animation-delay: 0s;
}

.card-icon {
    font-size: 1.8rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.card-label {
    font-size: 0.8rem;
    color: #666;
    line-height: 1;
}

.idea-card {
    top: 25%;
    left: -15%;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 1s;
}

.card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.message-card {
    bottom: 35%;
    right: -8%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 2s;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B35, #FF8A65);
}

.message-bubble {
    background: #f0f0f0;
    border-radius: 12px;
    padding: 8px 12px;
    position: relative;
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #f0f0f0;
}

.message-dots {
    display: flex;
    gap: 3px;
}

.message-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.5s ease-in-out infinite;
}

.message-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.message-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.growth-card {
    bottom: 15%;
    left: -12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation-delay: 1.5s;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.chart-bar {
    width: 8px;
    background: linear-gradient(to top, #4A90E2, #7AB8FF);
    border-radius: 4px 4px 0 0;
}

.chart-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

/* Background Decorations */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    animation: gentle-rotate 20s linear infinite;
}

.circle-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 230, 102, 0.1));
    animation-delay: 0s;
}

.circle-2 {
    bottom: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 163, 0.1));
    animation-delay: 5s;
}

.decoration-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: gentle-float 6s ease-in-out infinite;
}

.triangle-1 {
    top: 20%;
    right: 20%;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(255, 107, 53, 0.2);
    animation-delay: 2s;
}

.triangle-2 {
    bottom: 30%;
    left: 20%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid rgba(74, 144, 226, 0.2);
    animation-delay: 4s;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 30%;
    left: 25%;
    background: #FFE066;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 30%;
    background: #50C8A3;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 80%;
    background: #4A90E2;
    animation-delay: 2s;
}

.character {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: gentle-float 4s ease-in-out infinite;
}

.character-1 {
    animation-delay: 0s;
}

.character-2 {
    animation-delay: 1s;
}

.character-3 {
    animation-delay: 2s;
}

.character-head {
    width: 45px;
    height: 45px;
    background: #FDB4A6;
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
}

.main-head {
    width: 50px;
    height: 50px;
}

.character-head::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 15px;
    background: #2c3e50;
    border-radius: 15px 15px 0 0;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.character-body {
    width: 60px;
    height: 80px;
    border-radius: 30px 30px 15px 15px;
    position: relative;
}

.character-body.yellow {
    background: #FFE066;
}

.character-body.blue {
    background: #4A90E2;
    width: 70px;
    height: 90px;
}

.character-body.green {
    background: #50C8A3;
}

.character-arms {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 40px;
}

.character-arms::before,
.character-arms::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 12px;
    background: #FDB4A6;
    border-radius: 6px;
    top: 0;
}

.character-arms::before {
    left: -15px;
    transform: rotate(-30deg);
}

.character-arms::after {
    right: -15px;
    transform: rotate(30deg);
}

.main-character .laptop {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: #34495e;
    border-radius: 3px;
}

.main-character .laptop::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 20px;
    background: #2c3e50;
    border-radius: 3px 3px 0 0;
}

/* UI Elements */
.ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ui-element {
    position: absolute;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float-ui 3s ease-in-out infinite;
}

.lightbulb {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-delay: 0s;
}

.bulb-icon {
    font-size: 1.8rem;
}

.chat-bubble {
    top: 15%;
    right: 15%;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-delay: 1s;
}

.bubble-dots {
    display: flex;
    gap: 4px;
}

.bubble-dots span {
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.bubble-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.bubble-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.chart {
    bottom: 20%;
    left: 5%;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    animation-delay: 2s;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.chart-bars .bar {
    width: 8px;
    background: #4A90E2;
    border-radius: 2px;
}

.chart-bars .bar:nth-child(1) {
    height: 15px;
}

.chart-bars .bar:nth-child(2) {
    height: 25px;
}

.chart-bars .bar:nth-child(3) {
    height: 20px;
}

.stats-circle {
    bottom: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FF6B35, #FFE066);
    color: white;
    animation-delay: 1.5s;
}

.stats-content span {
    font-weight: bold;
    font-size: 1.1rem;
}

.message-box {
    top: 50%;
    right: 5%;
    width: 90px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    animation-delay: 0.5s;
}

.message-lines .line {
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
    margin-bottom: 6px;
}

.message-lines .line:nth-child(1) {
    width: 80%;
}

.message-lines .line:nth-child(2) {
    width: 60%;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: gentle-float 4s ease-in-out infinite;
}

.dot-1 {
    top: 25%;
    left: 20%;
    background: #FFE066;
    animation-delay: 0s;
}

.dot-2 {
    top: 70%;
    right: 25%;
    background: #50C8A3;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 30%;
    left: 75%;
    background: #4A90E2;
    animation-delay: 2s;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: gentle-float 4s ease-in-out infinite;
}

.triangle-1 {
    top: 30%;
    right: 30%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #FF6B35;
    animation-delay: 1.5s;
}

.triangle-2 {
    bottom: 40%;
    left: 15%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #4A90E2;
    animation-delay: 2.5s;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    right: 40%;
    animation-delay: 0s;
}

.star-2 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1s;
}

@keyframes gentle-bob {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

@keyframes gentle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes typing {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-container {
    position: relative;
    height: 24px;
}

.banner-scroll {
    display: flex;
    gap: 60px;
    animation: scroll-banner 25s linear infinite;
    white-space: nowrap;
    position: absolute;
    top: 0;
}

.trust-item {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #e55a2b);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6B35, #e55a2b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Growth Section */
.growth {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.growth-illustration {
    position: relative;
    height: 300px;
}

.growth-persons {
    position: relative;
    height: 100%;
}

.growth-person {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.growth-person-1 {
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    animation-delay: 0s;
}

.growth-person-2 {
    top: 100px;
    right: 40px;
    background: linear-gradient(45deg, #FFE066, #FF6B35);
    animation-delay: 1s;
}

.growth-person-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    animation-delay: 2s;
}

.growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.growth-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.growth-cta {
    background: white;
    color: #667eea;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.growth-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9ff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    background: #333;
    color: white;
    transform: scale(1.05);
    border-color: #FF6B35;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-period {
    color: #666;
    font-size: 1rem;
}

.pricing-featured .price-period {
    color: #ccc;
}

.pricing-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-featured .pricing-description {
    color: #ccc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.pricing-featured .pricing-features li {
    color: #ccc;
}

.pricing-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.pricing-button {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button-free {
    background: #f0f0f0;
    color: #333;
}

.pricing-button-free:hover {
    background: #e0e0e0;
}

.pricing-button-premium {
    background: #FF6B35;
    color: white;
}

.pricing-button-premium:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.pricing-button-enterprise {
    background: #4ECDC4;
    color: white;
}

.pricing-button-enterprise:hover {
    background: #44A08D;
    transform: translateY(-2px);
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: white;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.client-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.client-avatar::after {
    content: '👨‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.testimonial-logo i {
    color: #FF6B35;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #666;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-description {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FF6B35;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FF6B35;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    text-align: center;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        padding: 100px 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-wrapper {
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        height: 400px;
    }
    
    .hero-title,
    .hero-title-2 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .main-visual-card {
        max-width: 320px;
    }
    
    .floating-cards .float-card {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 120px 15px 60px;
    }
} 