/* Base Styles */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #4cc9f0;
    --accent-color: #7209b7;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f8faff;
    --background-dark: #2b2d42;
    --border-color: #e0e0e0;
    --shadow-color: rgba(67, 97, 238, 0.1);
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #F44336;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --gradient-primary: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
    --gradient-secondary: linear-gradient(135deg, #3a56d4 0%, #7209b7 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-color);
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

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

.circle-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
}

.circle-2 {
    top: 40%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
}

.circle-3 {
    bottom: 10%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    transform: rotate(45deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    bottom: 15%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    transform: rotate(65deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-cta, .btn-pricing, .btn-login {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    border-radius: 30px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.btn-pricing {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.btn-login {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

.btn-login:hover {
    background-color: rgba(67, 97, 238, 0.2);
}

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

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

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

.logo img {
    height: 35px;
}

.logo span {
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) ease;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.badge span {
    background: var(--gradient-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 0.8rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Phone Styles */
.phone-container {
    position: relative;
    z-index: 2;
}

.phone {
    width: 280px;
    height: 580px;
    background-color: #111;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background-color: #111;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.chat-header {
    background: var(--gradient-primary);
    padding: 15px;
    display: flex;
    align-items: center;
    color: white;
}

.chat-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    background-image: url('https://via.placeholder.com/40');
    background-size: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-avatar.customer {
    background-image: url('https://via.placeholder.com/40/333');
}

.contact-info h4 {
    font-size: 16px;
    margin: 0;
}

.contact-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.chat-messages {
    padding: 15px;
    height: calc(100% - 70px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f0f2f5;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message p {
    margin: 0;
    font-size: 14px;
}

.message .time {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
    text-align: right;
}

.message.customer {
    align-self: flex-start;
    background-color: white;
    border-bottom-left-radius: 5px;
}

.message.assistant {
    align-self: flex-end;
    background-color: #e3f2fd;
    border-bottom-right-radius: 5px;
    color: var(--primary-dark);
}

.appointment-slots {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slot {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.slot:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s infinite ease-in-out;
}

.element-1 {
    top: 20%;
    right: -30px;
    background: var(--gradient-primary);
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -20px;
    background: var(--gradient-secondary);
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 20%;
    right: -25px;
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    animation-delay: 1s;
}

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

/* Brands Section */
.brands {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

.brands p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.brand-logo i {
    font-size: 2rem;
    color: var(--text-color);
}

.brand-logo span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(67, 97, 238, 0.3);
    animation: spin 20s linear infinite;
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 10px;
}

/* How It Works Section with Parallax */
.how-it-works {
    position: relative;
    background-color: white;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    height: 2500px; /* Adjust based on content */
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.layer-base {
    transform: translateZ(0);
    z-index: 1;
    padding: 100px 0;
}

.parallax-step {
    position: sticky;
    top: 100px;
    padding: 50px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

.parallax-step .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.step-content {
    flex: 1;
    max-width: 500px;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-feature i {
    color: var(--primary-color);
}

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

.visual-decoration {
    position: absolute;
    top: 0;
    left: -50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-decoration.right {
    left: auto;
    right: -50px;
}

.decoration-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.decoration-line {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-top: 10px;
}

/* Dashboard Styles */
.dashboard {
    width: 100%;
    max-width: 800px;
    height: 500px;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dashboard-header {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar input {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    background-color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn.active {
    background-color: #4f46e5;
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.logout-btn {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.dashboard-content {
    padding: 20px;
}

.dashboard-content h2 {
    margin-bottom: 5px;
}

.dashboard-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.kanban-board {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.kanban-column {
    min-width: 250px;
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.column-header h3 {
    font-size: 1rem;
}

.column-menu {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.kanban-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: grab;
}

.kanban-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card-tag {
    display: inline-block;
    background-color: #fef3c7;
    color: #92400e;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.card-content h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.card-stats {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.add-task {
    width: 100%;
    padding: 10px;
    background-color: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-task:hover {
    background-color: rgba(79, 70, 229, 0.2);
}

/* Calendar Styles */
.calendar {
    width: 100%;
    max-width: 800px;
    height: 500px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.calendar:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.calendar-header {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    padding: 20px;
    color: white;
}

.calendar-header h2 {
    margin-bottom: 15px;
}

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

.today-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.current-date {
    font-weight: 500;
}

.calendar-grid {
    padding: 20px;
}

.weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.day {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background-color: #f8faff;
    border-radius: 8px;
}

.calendar-body {
    position: relative;
    height: 300px;
}

.appointment {
    position: absolute;
    width: calc(100% / 7);
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
}

.appointment.blue {
    background-color: #4361ee;
    top: 20px;
    left: calc((100% / 7) * 1);
}

.appointment.green {
    background-color: #10b981;
    top: 100px;
    left: calc((100% / 7) * 3);
}

.appointment-time {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.appointment-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px;
}

.testimonial {
    position: absolute;
    width: 100%;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.5s ease;
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    background-image: url('https://via.placeholder.com/60');
    background-size: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.testimonial-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.7;
}

.pricing-features li.disabled i {
    color: var(--danger-color);
}

.pricing-cta {
    padding: 0 30px 30px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

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

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .parallax-step .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .step-content {
        max-width: 100%;
        text-align: center;
    }
    
    .step-features {
        align-items: center;
    }
    
    .step-visual {
        order: -1;
    }
    
    .parallax-step:nth-child(even) .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone {
        transform: none !important;
    }
    
    .dashboard, .calendar {
        transform: none !important;
        height: auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-logos {
        gap: 20px;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}