/* --- Global Styles & Variables --- */
:root {
    --color-background: #0D0D0D;
    --color-text: #E0E0E0;
    --color-text-muted: #888888;
    --color-primary: #FF5733;
    --color-primary-dark: #C70039;
    --color-ui-bg: rgba(30, 30, 30, 0.5);
    --color-ui-border: rgba(255, 255, 255, 0.1);
    --font-family-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-family-main);
    line-height: 1.6;
    margin: 0px;
    font-size: 16px;
    padding: 0px;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

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

/* --- Buttons & Forms --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn1 {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(90deg, #FF4B2B, #FF416C);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-form {
    /* display: flex; */
    gap: 10px;
    margin-top: 2rem;
    justify-content: center;
}

.cta-form textarea {
    padding: 12px 18px;
    min-width: 700px;
    border-radius: 8px;
    border: 1px solid var(--color-ui-border);
    background: var(--color-ui-bg);
    color: white;
    font-size: 1rem;
    height: 150px;
      resize: none;

}

.form-subtext {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}


/* --- Header --- */
.main-header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(13, 13, 13, 0.1);
    backdrop-filter: blur(10px);
}

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

/* --- Hero Section --- */
#hero {
    padding-top: 30vh;
    padding-bottom: 50vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;

    background-image: url('bg-orb.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 120% auto;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

/* --- Mock UI Card --- */
.mock-ui {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-ui-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 4rem;
    text-align: left;
    backdrop-filter: blur(5px);
}

.mock-ui-header {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
}

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

.mock-ui-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-ui-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-ui-border);
}

.mock-ui-body li:last-child {
    border-bottom: none;
}

.lead-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lead-info i {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    width: 20px;
    text-align: center;
}
.lead-info span { font-size: 0.9rem; line-height: 1.4; color: var(--color-text-muted); }
.lead-info strong { color: var(--color-text); }


.tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    color: white;
}
.tag.green { background-color: #28a745; }
.tag.orange { background-color: #fd7e14; }
.tag.gray { background-color: #6c757d; }

.mock-ui-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-ui-border);
}

/* --- Logos Section --- */
#logos {
    padding: 40px 0;
    text-align: center;
}
.logo-text {
    display: block;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
}
.client-logo {
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- Problem & Solution Sections --- */
#problem, #solution {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 4rem auto;
}
.pre-title {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}
.problem-item {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
}
.problem-graphic {
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.problem-graphic div { background-color: var(--color-text-muted); opacity: 0.5; }

/* Graphic styles */
.graphic-1 div { width: 15%; }
.graphic-1 div:nth-child(1) { height: 20%; background-color: var(--color-primary); }
.graphic-1 div:nth-child(2) { height: 50%; }
.graphic-1 div:nth-child(3) { height: 80%; background-color: var(--color-primary); }
.graphic-1 div:nth-child(4) { height: 30%; }
.graphic-1 div:nth-child(5) { height: 60%; background-color: var(--color-primary); }
.graphic-1 div:nth-child(6) { height: 40%; }

.graphic-2 div { width: 15%; }
.graphic-2 div:nth-child(1) { height: 80%; }
.graphic-2 div:nth-child(2) { height: 20%; }
.graphic-2 div:nth-child(3) { height: 70%; background-color: var(--color-primary); }
.graphic-2 div:nth-child(4) { height: 30%; }
.graphic-2 div:nth-child(5) { height: 85%; }
.graphic-2 div:nth-child(6) { height: 25%; background-color: var(--color-primary); }

.graphic-3 div {
    width: 100%; height: 50%;
    border: 2px solid var(--color-text-muted);
    border-color: var(--color-text-muted) var(--color-text-muted) transparent transparent;
    transform: rotate(-45deg);
    align-self: center;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* --- Solution Section --- */
.product-image-container {
    margin-bottom: 4rem;
}
.product-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-ui-border);
}
footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .cta-form { flex-direction: column; align-items: center; }
    .cta-form input[type="email"] { width: 100%; max-width: 350px; }
    #hero { background-size: 200% auto; }
    .logo-grid { flex-wrap: wrap; }
}