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

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #8b6f47;
    --accent-color: #f5e6d3;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    overflow: visible;
}

/* Adjust navbar top position when beta banner is present */
body:has(.beta-banner) .navbar {
    top: 0;
}

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

.nav-brand {
    position: relative;
    z-index: 1001;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Footer contact info */
.footer-contact-info {
    font-style: normal;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-menu a.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.nav-menu a.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav-menu a.btn-primary.active {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 0.3em;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    list-style: none;
}

.nav-menu li:hover .nav-dropdown,
.nav-menu li.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 400;
}

.nav-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-header {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.dropdown-header:first-child {
    margin-top: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
    padding: 0;
}

.nav-dropdown a.active {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: #1a1a2e;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #1a1a2e;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.3s;
}

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

.hero-btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s;
}

.hero-btn-outline:hover {
    border-color: rgba(255,255,255,0.8);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: hero-bounce 2s infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.hero-decoration {
    display: none;
}

/* Video Showcase */
.video-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.video-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    aspect-ratio: 3/4;
}

.video-showcase-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.video-showcase-label h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.video-showcase-label p {
    font-size: 0.85rem;
    opacity: 0.75;
    margin: 0;
}

/* Stat Banner */
.stat-banner {
    background: #1a1a2e;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.stat-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

/* Product Media Gallery */
.product-media {
    margin-bottom: 2rem;
}

.product-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-image-wrapper {
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover {
    transform: translateY(-5px);
}

.product-gif-wrapper {
    transition: transform 0.3s ease;
}

.product-gif-wrapper:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .product-media {
        margin-bottom: 1.5rem;
    }
    
    .product-media > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    width: 100%;
    height: 100%;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Product Status Labels */
.product-status-label {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.2s;
    cursor: pointer;
}

.product-status-label:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.product-status-label.beta {
    background: var(--primary-color);
    color: white;
}

.product-status-label.launching {
    background: var(--secondary-color);
    color: white;
}

/* Launch Banner */
.launch-banner {
    background: var(--text-dark);
    color: white;
    padding: 0.65rem 0;
    text-align: left;
    position: relative;
    z-index: 999;
}

.launch-banner p {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.launch-banner a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.launch-banner a:hover {
    opacity: 0.85;
}

/* Subscribe Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: popupFadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: white;
    max-width: 480px;
    width: 90%;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    animation: popupSlideUp 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.popup-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    gap: 0.5rem;
}

.popup-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.popup-form .btn-primary {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.popup-message {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.popup-success {
    color: #2e7d32;
}

.popup-error {
    color: #c62828;
}

/* Beta Banner */
.beta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.beta-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.beta-banner a:hover {
    opacity: 0.9;
}

.beta-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}


.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.white-glove-section {
    margin-top: 4rem;
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.white-glove-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.white-glove-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.white-glove-content li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pricing-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

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

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-card ul {
    list-style: none;
}

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

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

.pricing-card strong {
    color: var(--primary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-box .btn:hover {
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

/* Form Styles */
.form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Estimate Page Two-Column Layout */
.estimate-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-dark);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.estimate-info-muted {
    color: var(--text-light);
    font-style: italic;
}

.estimate-info-muted a {
    color: var(--primary-color);
    text-decoration: underline;
}

.estimate-container {
    max-width: 1100px;
    padding: 2.5rem;
}

.estimate-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

/* Left column sections */
.estimate-section {
    margin-bottom: 2.5rem;
}

.estimate-section:last-child {
    margin-bottom: 0;
}

.estimate-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.estimate-section-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin: 1.25rem 0 0.75rem;
}

.estimate-section-subtitle:first-child {
    margin-top: 0;
}

/* Product rows */
.estimate-product-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.estimate-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: background 0.15s;
}

.estimate-product-row:hover {
    background: #f0ede8;
}

.estimate-product-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.estimate-product-name {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.estimate-product-row .product-status-label {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #ccc;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    margin-left: 0;
}

.estimate-product-row .product-status-label.beta {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.estimate-product-row .product-status-label.launching {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.estimate-product-price {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 52px;
    text-align: right;
}

.estimate-product-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.estimate-product-right select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0.4rem 2rem 0.4rem 0.5rem;
    min-width: 60px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%232c2c2c' d='M5 6L0 0h10z'/%3E%3C/svg%3E") no-repeat right 0.5rem center / 10px 6px;
    cursor: pointer;
}

/* Product sub-rows (e.g. Home Versions under Honeymoon Hustle) */
.estimate-product-sub {
    margin-left: 1.5rem;
    background: transparent;
    border-left: 2px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding-left: 1rem;
}

.estimate-product-sub .estimate-product-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Conditional option panels */
.estimate-option-panel {
    display: none;
    margin-top: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.estimate-option-panel .form-group {
    margin-bottom: 0;
}

/* White glove section */
.estimate-white-glove {
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.estimate-white-glove .checkbox-group {
    margin-bottom: 0.5rem;
}

.estimate-white-glove small {
    display: block;
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-left: 1.75rem;
}

.estimate-summary {
    position: sticky;
    top: 100px;
}

.estimate-summary-inner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: white;
    padding: 2rem;
}

.estimate-summary-inner h3 {
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: white;
}

.estimate-empty-state {
    padding: 2rem 1rem;
}

.estimate-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.estimate-checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.estimate-checklist-item .checklist-icon {
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}

.estimate-checklist-item .checklist-check {
    opacity: 0;
    transition: opacity 0.3s;
}

.estimate-checklist-item.checked {
    color: rgba(255,255,255,0.95);
}

.estimate-checklist-item.checked .checklist-icon {
    color: rgba(255,255,255,0.95);
}

.estimate-checklist-item.checked .checklist-check {
    opacity: 1;
}

.estimate-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.estimate-breakdown-item > span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
}

.estimate-breakdown-item:last-child {
    margin-bottom: 0;
}

.estimate-totals {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.estimate-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.estimate-total-row > strong:last-child {
    white-space: nowrap;
    flex-shrink: 0;
}

.estimate-total-row:last-child {
    margin-bottom: 0;
}

.estimate-notes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    opacity: 0.9;
}

.estimate-notes p {
    margin: 0 0 0.75rem;
}

.estimate-notes p:last-child {
    margin-bottom: 0;
}

.estimate-cta {
    margin-top: 1.5rem;
    text-align: center;
}

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

    .estimate-layout {
        grid-template-columns: 1fr;
    }

    .estimate-summary {
        position: static;
    }

    .estimate-product-row {
        flex-wrap: wrap;
    }

    .estimate-product-info {
        flex-basis: 100%;
    }

    .estimate-product-right {
        margin-left: auto;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232c2c2c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Product Detail Page */
.product-detail {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.product-detail-header > .product-status-label {
    margin-left: 0;
    margin-bottom: 0.75rem;
}

.product-detail-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.product-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.product-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Info Icon and Tooltip Styles */
.info-icon {
    cursor: help;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.2s;
    flex-shrink: 0;
}

.info-icon:hover {
    background: var(--primary-dark);
}

/* Light version for use on colored backgrounds (like estimate results) */
.info-icon-light {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.info-icon-light:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tooltip-popover {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    max-width: 300px;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Blog Styles */
.blog-listing {
    padding: 4rem 0;
    background: var(--bg-white);
}

.blog-listing .section-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-category-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-category-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blog-category-tag.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-image {
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

.blog-card-image a {
    display: block;
    height: 100%;
}

.blog-card-image svg {
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    font-weight: 500;
}

/* Blog Post Detail */
.blog-post-detail {
    padding: 4rem 0;
    background: var(--bg-white);
}

.blog-post-detail .container {
    max-width: 800px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 1rem 0;
    line-height: 1.2;
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.blog-post-image {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-post-image svg {
    display: block;
    width: 100%;
    height: auto;
}

.blog-post-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-post-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem auto;
}

.blog-post-content .inline-image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 2rem 0 0.75rem;
}

.blog-post-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-post-content ul {
    margin-bottom: 1.5rem;
}

.blog-post-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.blog-post-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-post-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: white;
}

/* Responsive Design */

/* Tablet breakpoint -- collapse nav to hamburger */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile dropdown styles */
    .nav-menu .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        padding-left: 0;
        background: var(--bg-light);
        border-radius: 4px;
        min-width: auto;
    }

    .nav-menu .has-dropdown > a::after {
        content: '';
    }

    .nav-menu .dropdown-header {
        margin-top: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .nav-menu .dropdown-divider {
        margin: 0.5rem 0.5rem;
    }

    .nav-menu a.btn-primary {
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-logo {
        height: 90px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .launch-banner p {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    .beta-banner p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

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

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .product-status-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }

    .hero {
        min-height: 70vh;
    }

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

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

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

    .video-showcase {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-banner h2 {
        font-size: 1.8rem;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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

    .blog-post-header h1 {
        font-size: 1.85rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-cta {
        padding: 2rem 1.5rem;
    }

    .blog-categories {
        gap: 0.5rem;
    }

    .blog-category-tag {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}
