* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0a0a;
    --primary-dark: #000000;
    --accent: #A09370;
    --accent-hover: #8a7f60;
    --accent-light: #c4b896;
    --accent-bg: rgba(160, 147, 112, 0.08);
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-subtle: #f5f5f5;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
}

img {
    height: auto;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 147, 112, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-dark {
    background: var(--primary);
    color: white;
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 13px;
}

.btn i {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding: 180px 0 140px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://static.wixstatic.com/media/11062b_8bfaa3d6762740aebf1cfae47d905c3a~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85/11062b_8bfaa3d6762740aebf1cfae47d905c3a~mv2.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--primary), transparent);
}

.hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgb(160 147 112 / 50%);
    border: 1px solid rgba(160, 147, 112, 0.3);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stats {
    display: flex;
    gap: 64px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: 140px 0;
}

.section-dark {
    background: var(--primary);
    color: white;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.solution-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--bg-subtle);
    line-height: 1;
    margin-bottom: 24px;
}

.solution-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.solution-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.solution-features {
    list-style: none;
    margin-bottom: 32px;
}

.solution-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.solution-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.solution-btn i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.solution-btn:hover {
    color: var(--accent);
}

.solution-btn:hover i {
    transform: translateX(4px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text:last-of-type {
    margin-bottom: 40px;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat-card {
    padding: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.about-stat-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.products-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.product-icon i {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.product-icon img {
    width: 86px;
    height: auto;
}

.product-icon:has(img) {
    background: none;
}

.product-icon:has(.hustle-logo) {
    background: none;
    width: auto;
    height: auto;
}

.hustle-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}

.hustle-dot {
    color: #4a9195;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.product-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link .product-card {
    cursor: pointer;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.story-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-subtle);
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* Individual team photo adjustments for consistent face sizing */
.team-card:nth-child(1) .team-image img {
    /* Mitch - reference */
    transform: scale(1.1);
    object-position: center 30%;
}

.team-card:nth-child(1):hover .team-image img {
    transform: scale(1.15);
}

.team-card:nth-child(2) .team-image img {
    /* Paige */
    transform: scale(1);
    object-position: center 40%;
}

.team-card:nth-child(2):hover .team-image img {
    transform: scale(1.05);
}

.team-card:nth-child(3) .team-image img {
    /* Dave */
    transform: scale(0.95);
    object-position: center 40%;
}

.team-card:nth-child(3):hover .team-image img {
    transform: scale(1);
}

.team-card:nth-child(4) .team-image img {
    /* Louis */
    transform: scale(1.35) translateY(6%);
    object-position: center top;
}

.team-card:nth-child(4):hover .team-image img {
    transform: scale(1.4) translateY(6%);
}

.team-card:nth-child(5) .team-image img {
    /* Naomi */
    transform: scale(1.6);
    object-position: center center;
}

.team-card:nth-child(5):hover .team-image img {
    transform: scale(1.65);
}

.team-card:nth-child(6) .team-image img {
    /* Auri - dog */
    transform: scale(1.5);
    object-position: center 25%;
}

.team-card:nth-child(6):hover .team-image img {
    transform: scale(1.55);
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

/* How We Work */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.how-item {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.how-item:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--accent);
}

.how-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.how-icon i {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.how-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.how-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 160px 0;
    background: var(--bg-subtle);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: var(--border);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--primary);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-social i {
    width: 18px;
    height: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 999;
    flex-direction: column;
    padding: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-link {
    padding: 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.mobile-menu-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .solutions-grid { gap: 24px; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .solutions-grid { grid-template-columns: 1fr; max-width: 600px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .products-grid, .products-grid.three-col { grid-template-columns: 1fr; max-width: 600px; }
    .story-content { grid-template-columns: 1fr; gap: 24px; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 100px 0; }
    .hero { padding: 140px 0 100px; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 17px; }
    .hero-stats { flex-direction: row; gap: 32px; }
    .hero-stat-value { font-size: 32px; }
    .hero-stat-label { font-size: 11px; }
    .section-title { font-size: 36px; }
    .section-subtitle { font-size: 16px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .cta-title { font-size: 40px; }
}

@media (max-width: 576px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-title { font-size: 32px; letter-spacing: -1px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 28px; }
    .hero-stat-label { font-size: 10px; }
    .section { padding: 80px 0; }
    .how-grid { gap: 16px; }
    .how-item { padding: 24px; }
    .how-item h4 { font-size: 15px; }
    .how-item p { font-size: 13px; }
    .how-icon { margin-bottom: 16px; }
    .how-icon i { width: 24px; height: 24px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-name { font-size: 14px; }
    .team-role { font-size: 11px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; max-width: 300px; }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(160, 147, 112, 0.4);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(160, 147, 112, 0.5);
}

.chat-toggle i {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-toggle .icon-close {
    display: none;
}

.chat-widget.open .chat-toggle .icon-message {
    display: none;
}

.chat-widget.open .chat-toggle .icon-close {
    display: block;
}

.chat-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-widget.open .chat-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--primary);
    padding: 24px;
}

.chat-header-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.chat-header-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.chat-body {
    padding: 24px;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent);
}

.chat-input::placeholder {
    color: #999;
}

textarea.chat-input {
    resize: none;
    min-height: 100px;
}

.chat-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-submit:hover {
    background: #8a7d5f;
}

.chat-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.chat-success i {
    width: 48px;
    height: 48px;
    color: #10b981;
    margin-bottom: 16px;
}

.chat-success-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.chat-success-text {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 576px) {
    .chat-panel {
        width: calc(100vw - 48px);
        right: 0;
    }
}

/* Cookie Consent Popup */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    z-index: 2001;
    max-width: 360px;
    width: calc(100% - 48px);
    padding: 28px;
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-text {
    margin-bottom: 24px;
}

.cookie-consent-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-consent-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--text-primary);
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: var(--text-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: #333;
}

.cookie-btn-decline {
    background: var(--bg-subtle);
    color: var(--text-secondary);
}

.cookie-btn-decline:hover {
    background: var(--border);
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 24px;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }
}
