@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #06080d;
    --bg-card: #0c0e14;
    --bg-card-hover: #12151f;
    --border-dark: #1b1e27;
    --border-light: #2c313f;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dark-gray: #64748b;
    --primary-orange: #ff6f3c;
    --primary-orange-hover: #ff571a;
    --accent-purple: #833ab4;
    --accent-blue: #4f46e5;
    --accent-green: #00c88a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1240px;
    --header-height: 80px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

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

.text-gradient-orange {
    background: linear-gradient(135deg, #ff9f43, var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #a855f7, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-dark);
}

.section-small {
    padding: 60px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 111, 60, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 111, 60, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--border-dark);
    border-color: var(--text-muted);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.btn-text:hover {
    color: var(--text-white);
}

.btn-text svg {
    transition: transform 0.3s ease;
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* Header & Navigation */
.header {
    height: var(--header-height);
    background-color: rgba(6, 8, 13, 0.95);
    border-bottom: 1px solid var(--border-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo-img {
    height: 35px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dropdown-menu.small {
    width: 320px;
    grid-template-columns: 1fr;
    padding: 16px;
}

.dropdown-menu.medium {
    width: 480px;
    grid-template-columns: 1fr;
    padding: 20px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-title {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark-gray);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 8px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: var(--bg-card-hover);
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 111, 60, 0.1);
    color: var(--primary-orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dropdown-footer {
    grid-column: 1 / -1;
    background-color: rgba(255, 255, 255, 0.02);
    margin: 8px -24px -24px -24px;
    padding: 16px 24px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.nav-login:hover {
    color: var(--primary-orange);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    z-index: 1010;
    position: relative;
    transition: background 0.2s;
}

.burger-menu:hover {
    background: rgba(255,255,255,0.05);
}

.burger-menu svg {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.hero-glow-orange {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 111, 60, 0.1);
    border: 1px solid rgba(255, 111, 60, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-section h1 {
    max-width: 960px;
    margin: 0 auto 24px auto;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-mockup-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card);
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Trusted Logos Section */
.trusted-section {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 40px 0;
    text-align: center;
}

.trusted-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark-gray);
    margin-bottom: 24px;
}

.logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.logo-bar img {
    height: 32px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.logo-bar img:hover {
    opacity: 0.8;
}

/* Card Styling */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(255, 111, 60, 0.05);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.card:hover .card-icon {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.card-title {
    margin-bottom: 16px;
}

.card-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Tab Showcase on Homepage */
.tabs-container {
    margin-top: 48px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 16px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: var(--primary-orange);
    background-color: rgba(255, 111, 60, 0.08);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Wrike AI Chat UI Representation */
.chat-window {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: var(--bg-card);
    padding: 16px;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.chat-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.chat-msg.sent {
    background-color: var(--border-dark);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-msg.received {
    background-color: var(--bg-card);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    border: 1px solid var(--border-dark);
}

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

.chat-input {
    flex-grow: 1;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.9rem;
}

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

/* Testimonial slider styling */
.testimonial-block {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 48px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 32px;
    line-height: 1.5;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--border-light);
    background-size: cover;
}

.testimonial-meta h4 {
    font-size: 1.1rem;
}

.testimonial-meta p {
    font-size: 0.85rem;
    color: var(--text-dark-gray);
}

.testimonial-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.stat-item p {
    font-size: 0.85rem;
}

/* Footer Section */
.footer {
    background-color: #030406;
    border-top: 1px solid var(--border-dark);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-newsletter h4 {
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-input {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-white);
    flex-grow: 1;
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.85rem;
    color: var(--text-dark-gray);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-social-link:hover {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

/* Accordion FAQs styling */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-header svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
    color: var(--primary-orange);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.accordion-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

/* Pricing Page & Calculator styling */
.pricing-calculator {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 48px auto;
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.tier-select {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    background-color: var(--bg-dark);
    padding: 6px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tier-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.tier-btn.active {
    background-color: var(--bg-card);
    color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-container {
    margin-bottom: 40px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.slider-val {
    color: var(--primary-orange);
    font-size: 1.25rem;
}

.seats-slider {
    width: 100%;
    -webkit-appearance: none;
    background: var(--border-dark);
    outline: none;
    height: 8px;
    border-radius: 100px;
}

.seats-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 111, 60, 0.5);
    transition: transform 0.1s ease;
}

.seats-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 32px;
}

.price-display h3 {
    font-size: 3rem;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Forms (Contact, Demo etc.) */
.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
}

.form-input, .form-textarea, .form-select {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Feature Badge/Details in feature pages */
.feature-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

/* Platform Overview Diagram */
.platform-overview-section {
    background-color: #080b12;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.overview-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(12, 14, 20, 0.5);
    border: 1px solid var(--border-dark);
    padding: 24px;
    border-radius: 16px;
}

.overview-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark-gray);
    margin-bottom: 8px;
}

.overview-item-box {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.overview-item-box:hover {
    transform: translateX(4px);
    border-color: rgba(255, 111, 60, 0.4);
    box-shadow: 0 4px 20px rgba(255, 111, 60, 0.1);
}

.overview-item-box.active {
    border-color: var(--primary-orange);
    background-color: rgba(255, 111, 60, 0.03);
}

.overview-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 111, 60, 0.1);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.overview-item-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.overview-robot-card {
    background: linear-gradient(135deg, #130f26 0%, #07090e 100%);
    border: 1px solid rgba(131, 58, 180, 0.2);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.overview-robot-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(131, 58, 180, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -50px;
    right: -50px;
    z-index: 0;
    pointer-events: none;
}

.robot-card-chat {
    background: rgba(6, 8, 13, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 16px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.robot-card-query {
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.robot-card-answer {
    color: var(--text-white);
    line-height: 1.5;
}

.robot-illust-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    position: relative;
    z-index: 1;
}

.robot-illust {
    width: 120px;
    height: auto;
    animation: floatMascot 4s ease-in-out infinite;
}

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

/* AI Teammate Mascot Section */
.ai-teammate-section {
    background: radial-gradient(100% 100% at 50% 0%, rgba(131, 58, 180, 0.05) 0%, rgba(6, 8, 13, 0) 100%);
    border-bottom: 1px solid var(--border-dark);
}

.mascot-display-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.mascot-bubble {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 111, 60, 0.15) 0%, rgba(131, 58, 180, 0.05) 100%);
    border: 1px solid rgba(255, 111, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 111, 60, 0.1), inset 0 0 20px rgba(131, 58, 180, 0.1);
    animation: floatMascot 6s ease-in-out infinite;
}

.mascot-bubble::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 111, 60, 0.1);
    animation: rotateDashed 20s linear infinite;
}

@keyframes rotateDashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mascot-bubble-img {
    width: 90px;
    height: auto;
    z-index: 2;
}

.teammate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.teammate-card {
    background: rgba(12, 14, 20, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.teammate-card:hover {
    border-color: rgba(131, 58, 180, 0.4);
    background: rgba(18, 21, 31, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(131, 58, 180, 0.15);
}

.teammate-card-badge {
    display: inline-flex;
    background: rgba(131, 58, 180, 0.1);
    border: 1px solid rgba(131, 58, 180, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #a855f7;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
}

@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .teammate-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .header {
        height: 70px;
    }
    
    .burger-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        border-top: 1px solid var(--border-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .nav-link {
        padding: 16px 8px;
        font-size: 1.1rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding: 0 0 16px 16px;
        display: none;
        grid-template-columns: 1fr;
    }
    
    .nav-item.active .dropdown-menu {
        display: grid;
    }
    
    .dropdown-title {
        display: none;
    }
    
    .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 24px 0;
        gap: 16px;
        border-top: 1px solid var(--border-dark);
        margin-top: auto;
    }
    
    .nav-actions .btn {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 1.85rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pricing-calculator {
        padding: 24px;
    }
    
    .calc-result-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .calc-result-row .btn {
        width: 100%;
    }
}
