/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Tertiary color (dark grey) for default text */
    background-color: #f5f5f5; /* Light grey for body background */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background-color: #8B0000; /* Primary color (brick red) */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo {
    max-width: 40px;
    height: auto;
    margin-right: 10px;
}
.header-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}
nav a:hover {
    color: #D2B48C; /* Secondary color (light taupe) */
}
.header .btn {
    max-width: 150px;
    text-align: center;
    margin-left: 20px;
}
.header .btn-primary {
    background-color: #D2B48C; /* Tan for contrast */
    color: #333333; /* Dark grey text for readability on tan */
}
.header .btn-primary:hover {
    background-color: #b89a6e; /* Slightly darker tan for hover (optional, for better UX) */
}
/* Hero Section */
.hero {
    background-color: #fff;
    color: #333333;
    padding: 20px 0;
    text-align: center;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.hero h1 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #8B0000;
    margin-bottom: 15px;
    line-height: 1.2;
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: 250px;
    max-height: 100%; /* Prevent overflow */
    overflow: hidden; /* Clip if needed */
}
.photo {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.arrow {
    font-size: 1.2rem;
    color: #8B0000;
}
.model-video {
    max-width: 250px;
    max-height: 100%;
}
.model-video video {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-primary {
    background-color: #8B0000;
    color: #fff;
}
.btn-primary:hover {
    background-color: #6b0000;
}
.btn-secondary {
    background-color: #333333;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #222222;
}
.urgency {
    color: #8B0000;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 8px;
}
/* Target Market Section */
.target-market {
    padding: 60px 0;
    background-color: #333333;
    color: #fff;
}
.target-market h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #D2B48C;
}
.target-market p {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.target-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.text-content {
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.text-content ul {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}
.text-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
}
.text-content ul li strong {
    color: #8B0000;
}
.text-content .btn {
    max-width: 150px;
    text-align: center;
}
/* Features Section */
.features {
    padding: 60px 0;
    background-color: #D2B48C;
    text-align: center;
    color: #333333;
}
.features h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8B0000;
}
.features p {
    margin-bottom: 40px;
    color: #333333;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.feature i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 15px;
}
.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8B0000;
}
.feature p {
    color: #333333;
}
/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}
.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8B0000;
}
.how-it-works p {
    margin-bottom: 40px;
    color: #333333;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.step {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    text-align: center;
}
.step h3 {
    font-size: 1.3rem;
    color: #8B0000;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.step img {
    width: 100%;
    border-radius: 8px;
    align-self: start;
}
/* Comparison Section */
.comparison {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}
.comparison h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8B0000;
}
.comparison table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.comparison th, .comparison td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    color: #333333;
}
.comparison th {
    background-color: #8B0000;
    color: #fff;
}
.comparison td:first-child {
    font-weight: bold;
}
/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}
.pricing h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8B0000;
}
.pricing p {
    margin-bottom: 40px;
    color: #333333;
}
.no-demo-pitch {
    text-align: center;
    margin-bottom: 20px;
}
.no-demo-pitch h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 10px;
}
.no-demo-pitch p {
    font-size: 1.2rem;
    color: #333333;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.pricing-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.pricing-card.highlight {
    border: 2px solid #8B0000;
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8B0000;
}
.price {
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 10px;
}
.trial {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 20px;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}
.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333333;
    position: relative;
    padding-left: 20px;
}
.pricing-card ul li:before {
    content: "✔";
    color: #8B0000;
    position: absolute;
    left: 0;
}
/* Footer */
.footer {
    padding: 40px 0;
    background-color: #333333;
    color: #fff;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}
.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #D2B48C;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-section ul li a:hover {
    color: #D2B48C;
}
.footer-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section input, .footer-section textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333333;
}
.footer-section input::placeholder, .footer-section textarea::placeholder {
    color: #666;
}
.social-icons {
    text-align: center;
    margin-bottom: 20px;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-icons a:hover {
    color: #D2B48C;
}
.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
}
/* Responsive Design */
@media (max-width: 999px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    nav a {
        margin: 0 10px;
    }
    .header .btn {
        max-width: 200px;
        margin: 0 10px;
    }
    .hero {
        padding: 15px 0;
    }
    .hero-text {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    .hero h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    .photos-grid, .model-video {
        max-width: 200px;
    }
    .no-demo-pitch h3 {
        font-size: 1.4rem;
    }
    .no-demo-pitch p {
        font-size: 1rem;
    }
    .target-content {
        flex-direction: column;
        align-items: stretch;
    }
    .text-content {
        min-height: auto;
    }
    .text-content .btn {
        max-width: 200px;
    }
    .feature-grid, .steps-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .transformation-carousel {
        min-height: 400px; /* Taller on mobile since stacked vertically; adjust based on your layout */
    }
    .carousel-slide {
        flex-direction: column;
        gap: 8px;
        justify-content: flex-start; /* Align top to prevent centering jitter */
    }
    .carousel-tabs {
        gap: 5px; /* Tighter gap on mobile if needed, but keep horizontal */
    }
    .carousel-tabs .tab {
        padding: 6px 12px; /* Slightly smaller for mobile fit */
        font-size: 0.9rem;
    }
}
@media (min-width: 1000px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Form Feedback */
.form-success {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    color: #8B0000; /* Primary color (brick red) */
    border: 2px solid #8B0000;
    border-radius: 5px;
    text-align: center;
}
.form-error {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    color: #6b0000; /* Darker red for errors */
    border: 2px solid #6b0000;
    border-radius: 5px;
    text-align: center;
}
/* Base Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0; /* Reduced padding for compactness */
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap; /* Prevent any wrapping */
    gap: 0.5rem; /* Small gaps between elements */
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}
.header-logo {
    height: 35px; /* Slightly smaller base size */
    margin-right: 0.4rem;
}
.header-title {
    font-size: 1.4rem;
    font-weight: bold;
}
nav {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0; /* Allow shrinking */
}
nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: inherit;
}
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.hamburger span {
    height: 2px;
    width: 22px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 4px;
}
.hamburger span:last-child {
    margin-bottom: 0;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.hamburger span {
    transition: all 0.3s ease;
}
/* Slide-out Menu */
.mobile-menu {
    display: none;
    position: fixed;
    right: 0;
    height: fit-content; /* Only as tall as needed */
    width: fit-content; /* Only as wide as needed */
    min-width: 180px; /* Prevent it from being too narrow */
    background: #333333; /* Solid dark grey background */
    box-shadow: -4px 0 10px rgba(0,0,0,0.15);
    padding: 1rem; /* Balanced padding */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    color: #fff; /* White text for contrast on dark grey */
    border-radius: 0 0 0 8px; /* Optional rounded corner for cleaner look */
}
.mobile-menu.active {
    display: block;
    transform: translateX(0);
}
.mobile-menu a {
    display: block;
    margin: 0.8rem 0; /* Slightly reduced margins for compactness */
    text-align: left;
    font-size: 1rem;
    color: #fff; /* White links */
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: #D2B48C; /* Hover to tan */
}
/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}
.overlay.active {
    display: block;
}
/* Carousel Styles */
.transformation-carousel {
    display: flex;
    flex-direction: column; /* Tabs on top, slides below */
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; /* Necessary for absolute positioning */
}
.carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 100%;
    
    /* Crucial for slide transition */
    position: absolute;
    top: 60px; /* Position below the tabs (adjust if necessary) */
    left: 0;
    opacity: 0;
    pointer-events: none; /* Make inactive slides unclickable */
    transition: opacity 0.5s ease-in-out;
}
.carousel-slide.active {
    opacity: 1;
    position: relative; /* Restore flow for active slide */
    pointer-events: all;
    top: 0;
}
.carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px; /* Space between tabs and slides */
}
.carousel-tabs .tab {
    background-color: #f5f5f5;
    border: 1px solid #8B0000;
    color: #8B0000;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}
.carousel-tabs .tab.active {
    background-color: #8B0000;
    color: #fff;
}
.carousel-tabs .tab:hover {
    background-color: #6b0000;
    color: #fff;
}
/* Responsive Breakpoint */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .btn.btn-primary {
        font-size: 0.85rem; /* Smaller font */
        padding: 0.4rem 0.8rem; /* Compact padding */
        white-space: nowrap;
        flex-shrink: 0;
        overflow: visible;
        text-overflow: clip;
        max-width: none; /* Remove cap to allow full text */
    }
    .logo-link {
        flex-shrink: 1; /* Allow shrinking */
    }
    .header-title {
        font-size: 1.1rem; /* Smaller title */
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .header-logo {
        height: 28px; /* Even smaller on narrow screens */
    }
    .header .container {
        gap: 0.3rem; /* Tighter gaps */
    }
}
/* For very narrow screens */
@media (max-width: 480px) {
    .header-title {
        font-size: 1rem;
    }
    .btn.btn-primary {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        max-width: none; /* Remove cap here too */
    }
    .hamburger {
        margin-left: 0.3rem;
    }
}
