:root {
    --primary: #6028ff;
    --primary-hover: #501ee0;
    --primary-light: #f0ebff;
    --dark: #110826;
    --footer-bg: #1e1042;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-alt: #f9f9fb;
    --success: #22c55e;
    --danger: #ef4444;
    --border: #eaeaea;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(96, 40, 255, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(96, 40, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

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

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

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

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Typography & Utilities */
h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

.pill {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px; /* Brings menu closer to logo */
}

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

.logo-icon {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo-os {
    color: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 16px;
    margin-left: auto; /* Pushes buttons to the right */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    margin-left: auto; /* Push to right on mobile */
}

/* Mobile Menu Active State */
.nav-container.mobile-active .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    gap: 20px;
}

.nav-container.mobile-active .nav-actions {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.1);
    margin-left: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(96, 40, 255, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(96, 40, 255, 0.03), transparent 40%);
}

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

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.brand-logo {
    width: 170px; /* Set to exact width requested */
    height: auto;
    object-fit: contain;
}

.footer-logo .brand-logo {
    width: 200px; /* Slightly larger for the footer */
    height: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    padding: 4px;
}

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

.demo-btn i {
    font-size: 20px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
}

.avatars img:first-child { margin-left: 0; }

.trust-text .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.trust-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Chat Simulation Graphic */
.hero-graphic {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-window {
    width: 380px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 450px;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    background: white;
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-header-info h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 2px;
}

.status {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.chat-header-actions {
    display: flex;
    gap: 12px;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: var(--bg-alt);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    max-width: 85%;
    gap: 10px;
}

.message.incoming { align-self: flex-start; }
.message.outgoing { align-self: flex-end; flex-direction: row-reverse; }

.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0d4ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.msg-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px 12px 12px 0;
    font-size: 13px;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.message.outgoing .msg-bubble {
    background: var(--primary);
    color: white;
    border-radius: 12px 12px 0 12px;
}

.msg-options {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.msg-option-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}
.msg-option-dot:nth-child(2) { opacity: 0.6; }
.msg-option-dot:nth-child(3) { opacity: 1; }

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px 12px 12px 0;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0% { transform: translateY(0); opacity: 0.5; }
    100% { transform: translateY(-4px); opacity: 1; }
}

.chat-footer {
    padding: 16px;
    background: white;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
}

.chat-footer input {
    flex: 1;
    border: none;
    background: var(--bg-alt);
    padding: 12px 16px;
    border-radius: 20px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.send-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.powered-by {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    padding-bottom: 12px;
    background: white;
}

.powered-by strong { color: var(--primary); }

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    animation: float 4s ease-in-out infinite alternate;
}

.float-item .icon-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.item-1 { top: 5%; right: -20px; animation-delay: 0s; }
.item-2 { top: 30%; right: -60px; animation-delay: 1s; }
.item-3 { top: 55%; right: -40px; animation-delay: 0.5s; }
.item-4 { top: 80%; right: -30px; animation-delay: 1.5s; }

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

/* Dedicated Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-card .icon-bg {
    margin-bottom: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* -----------------------------------
   ABOUT US PAGE STYLES
------------------------------------ */
.about-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top, rgba(96, 40, 255, 0.08), transparent 50%),
                radial-gradient(circle at bottom right, rgba(96, 40, 255, 0.05), transparent 40%);
}

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

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

.about-hero-robot {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-hero-robot img {
    max-width: 100%;
    height: auto;
    width: 300px;
    filter: drop-shadow(0 20px 30px rgba(96, 40, 255, 0.2));
    animation: float 6s ease-in-out infinite alternate;
}

.about-hero-chat {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Stats Section */
.stats-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
    background: var(--bg-alt);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(96, 40, 255, 0.3);
}

.mv-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.mv-content p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Meet the Team */
.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

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

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-light);
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0 120px;
    background: radial-gradient(ellipse at bottom, rgba(96, 40, 255, 0.05), transparent 70%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 16px;
}

.why-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* -----------------------------------
   LEGAL / TEXT PAGES STYLES
------------------------------------ */
.legal-header {
    padding: 80px 0 40px;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.legal-header p {
    color: var(--text-muted);
}

.legal-content {
    padding: 60px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 18px;
    margin: 24px 0 12px;
}

.legal-content p, .legal-content ul {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(96, 40, 255, 0.2);
}

.step-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.icon-bg {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.step-arrow {
    color: var(--primary);
    font-size: 24px;
    padding: 0 20px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.billing-toggle {
    display: inline-flex;
    background: var(--bg-alt);
    padding: 6px;
    border-radius: 100px;
    margin-top: 24px;
    position: relative;
    border: 1px solid var(--border);
}

.toggle-label {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.toggle-label.active {
    color: white;
}

.toggle-bg {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: var(--primary);
    border-radius: 100px;
    transition: var(--transition);
    z-index: 1;
}

#yearly-label {
    position: relative;
}

/* Curved hand drawn arrow using CSS shapes */
.drawn-arrow {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-radius: 0 0 40px 0;
    transform: rotate(20deg);
}
.drawn-arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: rotate(45deg);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(96, 40, 255, 0.3);
}

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

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

.badge-container {
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.badge {
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
}

.title-with-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-badge {
    background: #8b5cf6;
}

.plan-header h3 {
    font-size: 24px;
}

.plan-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

.plan-price {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.period {
    color: var(--text-muted);
    font-size: 14px;
}

.plan-features {
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-main);
}

.plan-features li i {
    font-size: 18px;
}

.plan-features li.disabled {
    color: var(--text-muted);
}
.plan-features li.disabled i {
    color: #ccc;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonials-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--dark);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-card .stars {
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
    min-height: 80px;
}

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

.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.author span {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* CTA Section */
.cta-banner {
    padding: 40px 0 0;
}

.cta-content {
    background: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.cta-icon {
    font-size: 48px;
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cta-text h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    color: white;
}

.brand-col p {
    font-size: 14px;
    opacity: 0.8;
    margin: 20px 0;
    line-height: 1.6;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #a78bfa;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-icon {
    background: white;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    font-weight: bold;
    font-size: 12px;
}
.paytm { color: #002970; }
.gpay { color: #333; }
.visa { color: #1434CB; font-style: italic; }
.mastercard { display: flex; gap: -5px; }
.mc-red { width: 14px; height: 14px; background: #eb001b; border-radius: 50%; margin-right: -4px; z-index: 1;}
.mc-yellow { width: 14px; height: 14px; background: #f79e1b; border-radius: 50%;}
.rupay { color: #003481; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive Design moved to responsive.css */

