/* CSS Custom Properties */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'UI Sans Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-nav {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    color: white !important;
    border-radius: 0.5rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-description .highlight {
    color: #2563eb;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.hero-visual {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

.phone-mockups {
    position: relative;
    height: 600px;
}

.phone {
    position: absolute;
    width: 280px;
    height: 560px;
    background: #1f2937;
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.phone-top {
    top: 0;
    right: 0;
    transform: rotate(-5deg);
    z-index: 2;
}

.phone-bottom {
    bottom: 0;
    right: 50px;
    transform: rotate(8deg);
    z-index: 1;
    width: 240px;
    height: 480px;
}

.phone-screen {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.phone-header {
    padding: 1rem 1.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.header-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.phone-email {
    padding: 0 1.25rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.phone-search {
    padding: 0 1.25rem 1rem;
}

.phone-search input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.phone-chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.chat-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-item:hover {
    background: var(--bg-secondary);
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.chat-avatar.blue {
    background: #3b82f6;
}

.chat-avatar.purple {
    background: var(--secondary-color);
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.chat-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.chat-message-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.chat-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-badge {
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    background: white;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.nav-item:hover {
    background: var(--bg-secondary);
}

.nav-item.active {
    color: #3b82f6;
}

.nav-icon {
    font-size: 1.25rem;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 500;
}

.chat-assist-icon {
    font-size: 4rem;
    text-align: center;
    color: var(--secondary-color);
    margin-top: 2rem;
}

/* Chat Assist Section */
.chat-assist {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a855f7 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.chat-assist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.chat-assist .container {
    position: relative;
    z-index: 1;
}

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

.chat-assist-text {
    color: white;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.chat-assist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.chat-assist-badge .badge-icon {
    width: 1rem;
    height: 1rem;
    color: #a78bfa;
}

.chat-assist-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.chat-assist-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.chat-assist-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    flex-shrink: 0;
}

.feature-number.pink {
    background: #ec4899;
}

.feature-number.blue {
    background: #3b82f6;
}

.feature-number.green {
    background: #10b981;
}

.feature-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-text strong {
    color: white;
    font-weight: 600;
}

.privacy-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.privacy-icon {
    width: 2rem;
    height: 2rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.privacy-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.chat-assist-visual {
    position: relative;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.speed-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.speed-icon {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
}

.phone-chat-assist {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    transform: rotate(5deg);
}

.phone-chat-assist .phone-screen {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-chat-assist .phone-header h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 0;
}

.chat-assist-main-icon {
    text-align: center;
    margin: 1rem 0;
}

.chat-assist-main-icon i {
    width: 4rem;
    height: 4rem;
    color: var(--secondary-color);
}

.chat-assist-description {
    text-align: center;
}

.chat-assist-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chat-assist-description p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.suggestion-box {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #92400e;
}

.suggestion-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.examples-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.example-item {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary-color);
}

.command-input {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.command-input input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
    color: var(--text-primary);
}

.command-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.send-button {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.send-button i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-primary-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-gradient .arrow {
    font-size: 1.25rem;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.btn-outline-dark {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-outline-dark:hover {
    background: var(--text-primary);
    color: white;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Features Section */
/* Everything You Need Section */
.everything-section {
    background: #f0f4f8;
    padding: 6rem 0;
}

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

.everything-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.everything-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.everything-card.featured {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #8b5cf6;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ec4899;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.star-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.everything-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.everything-card:nth-child(1) .everything-icon {
    color: #8b5cf6;
}

.everything-card:nth-child(2) .everything-icon {
    color: #3b82f6;
}

.everything-card:nth-child(3) .everything-icon {
    color: #ec4899;
}

.everything-card:nth-child(4) .everything-icon {
    color: #10b981;
}

.everything-card:nth-child(5) .everything-icon {
    color: #8b5cf6;
}

.everything-card:nth-child(6) .everything-icon {
    color: #f59e0b;
}

.everything-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.everything-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, #6b21a8 0%, #ec4899 100%);
    padding: 4rem 0;
}

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

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-card:last-child::after {
    display: none;
}

.stat-purple {
    background: #6b21a8;
}

.stat-gradient {
    background: linear-gradient(90deg, #6b21a8 0%, #ec4899 100%);
}

.stat-pink {
    background: #ec4899;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

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

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

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Privacy/Security Section */
.privacy-security {
    background: #f0f4f8;
    padding: 8rem 0;
    text-align: center;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.privacy-badge-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.privacy-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition), opacity 0.6s ease-out, transform 0.6s ease-out;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.privacy-check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.privacy-card p {
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section (Purple Gradient) */
.cta-purple {
    background: linear-gradient(135deg, #6b21a8 0%, #ec4899 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-purple-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-purple-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-purple-tagline {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-white {
    background: white;
    color: #6b21a8;
    border: 1px solid rgba(107, 33, 168, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

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

.btn-primary-white .arrow {
    font-size: 1.25rem;
}

.btn-secondary-purple {
    background: rgba(107, 33, 168, 0.8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-purple:hover {
    background: rgba(107, 33, 168, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-purple-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: white;
}

.cta-feature-check .check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.cta-badge .badge-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta .btn-primary-gradient {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
}

.cta-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-note {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.founder-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.founder-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    padding: 0.5rem;
    z-index: 2;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
}

.founder-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 2.5rem;
    opacity: 0.2;
    z-index: 1;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

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

.founder-info {
    animation: fadeInUp 0.8s ease-out;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.founder-badge .badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
}

.founder-name {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.founder-badge-link,
.founder-name-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.founder-badge-link {
    display: inline-block;
}

.founder-name-link {
    display: block;
}

.founder-badge-link:hover,
.founder-name-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.founder-badge-link:hover .founder-badge,
.founder-name-link:hover .founder-name {
    opacity: 0.9;
}

.founder-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.founder-bio {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 90%;
}

.founder-quote {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
}

.quote-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.founder-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-gradient-line {
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

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

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.social-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .everything-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }

    .founder-content {
        gap: 3rem;
    }

    .founder-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Hide Features and Pricing links on narrow screens */
    .nav-links li:first-child,
    .nav-links li:nth-child(2) {
        display: none;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .phone-mockups {
        height: 500px;
        display: flex;
        justify-content: center;
    }

    .phone {
        position: relative;
        transform: none !important;
    }

    .phone-top {
        position: relative;
        margin: 0 auto;
    }

    .phone-bottom {
        display: none;
    }

    .chat-assist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .chat-assist-title {
        font-size: 2.25rem;
    }

    .chat-assist-subtitle {
        font-size: 1.125rem;
    }

    .phone-chat-assist {
        transform: none;
        width: 280px;
    }

    .speed-badge {
        top: -0.5rem;
        right: 1rem;
    }

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

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

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

    .stat-card {
        padding: 2.5rem 1.5rem;
    }

    .stat-card::after {
        display: none;
    }

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .stat-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-value {
        font-size: 2.5rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .privacy-title {
        font-size: 2.25rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .cta-purple-title {
        font-size: 2.5rem;
    }

    .cta-purple-tagline {
        font-size: 1.125rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-purple-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        width: 100%;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.125rem;
    }

    .cta {
        padding: 6rem 0;
    }

    .founder-section {
        padding: 6rem 0;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .founder-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-badge-link {
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .founder-name-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .founder-image-frame {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-name {
        font-size: 2.5rem;
        text-align: center;
    }

    .founder-title {
        font-size: 1.25rem;
    }

    .founder-bio {
        max-width: 100%;
        font-size: 1rem;
    }

    .founder-quote {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .footer-brand-column {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .phone {
        width: 240px;
    }

    .phone-bottom {
        display: none;
    }

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

    .stat-card {
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 2rem;
    }

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

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

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

    .cta-purple-title {
        font-size: 2rem;
    }

    .cta-purple-tagline {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

    .cta {
        padding: 4rem 0;
    }

    .founder-section {
        padding: 4rem 0;
    }

    .founder-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-badge-link {
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .founder-name-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .founder-image-frame {
        max-width: 280px;
    }

    .founder-name {
        font-size: 2rem;
        text-align: center;
    }

    .founder-title {
        font-size: 1.125rem;
    }

    .founder-bio {
        font-size: 0.9375rem;
    }

    .founder-quote {
        padding: 1.25rem;
    }

    .founder-quote p {
        font-size: 0.9375rem;
    }

    .feature-card,
    .pricing-card {
        padding: 2rem;
    }
}

/* Smooth scroll behavior for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================
   CAROUSEL SECTION
   Screenshots showcase with hover overlays
   ============================================ */
.carousel-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.carousel-badge .badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0 2rem;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding-right: 2rem;
}

.carousel-item {
    flex-shrink: 0;
    width: 320px;
    height: 640px;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.carousel-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.carousel-image-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 1.5rem;
}

.carousel-image {
    width: 100%;
    height: 655px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.95) 0%, rgba(107, 33, 168, 0.8) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 1.5rem 1.5rem;
}

.carousel-item:hover .carousel-overlay {
    transform: translateY(0);
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Scroll indicators - fade edges */
.carousel-wrapper.scrolled-left::before,
.carousel-wrapper.scrolled-right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.carousel-wrapper.scrolled-left::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
    opacity: 0;
}

.carousel-wrapper.scrolled-right::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
    opacity: 0;
}

.carousel-wrapper.scrolled-left:not(.scrolled-right)::before {
    opacity: 1;
}

.carousel-wrapper.scrolled-right:not(.scrolled-left)::after {
    opacity: 1;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .carousel-item {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 4rem 0;
    }

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

    .carousel-item {
        width: 260px;
        height: 520px;
    }

    .carousel-track {
        gap: 1rem;
    }

    .carousel-title {
        font-size: 1.25rem;
    }

    .carousel-subtitle {
        font-size: 0.9375rem;
    }

    .carousel-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        width: 240px;
        height: 480px;
    }

    .carousel-title {
        font-size: 1.125rem;
    }

    .carousel-subtitle {
        font-size: 0.875rem;
    }

    .carousel-overlay {
        padding: 1.25rem 1rem 1rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   Voices of SmartChat - User testimonials
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.testimonials-badge .badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.testimonial-quote-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-color);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    padding: 3px;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 0.9375rem;
    }

    .testimonial-role {
        font-size: 0.8125rem;
    }
}

