/* OG Creative - Premium Landing Page Styles */
:root {
    --og-coral: #ff5a36;
    --og-coral-rgb: 255, 90, 54;
    --bg-dark: #0a0a0c;
    --bg-card: #151518;
    --text-main: #ffffff;
    --text-muted: #a0a0a8;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #1a1a1e inset;
    transition: background-color 5000s ease-in-out 0s;
}

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

body {
    background-color: #0a0a0c;
    background-color: var(--bg-dark);
    color: #ffffff;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}

code,
.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Topbar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--og-coral);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--og-coral);
}

.cta-button {
    background: var(--og-coral);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(var(--og-coral-rgb), 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--og-coral-rgb), 0.3);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(var(--og-coral-rgb), 0.15), transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
    color: var(--og-coral);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

/* Monthly Section */
.monthly-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

.monthly-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(var(--og-coral-rgb), 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-tag {
    color: var(--og-coral);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    margin-top: auto;
}

.stat-item .stat-value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

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

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    border-color: var(--og-coral);
    box-shadow: 0 0 40px rgba(var(--og-coral-rgb), 0.1);
    transform: scale(1.02);
}

.package-card.featured::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--og-coral);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
}

.pkg-type {
    color: var(--og-coral);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.package-card h3 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.package-card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    min-height: 60px;
}

.price-wrap {
    margin-bottom: 32px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.price span {
    font-size: 1.5rem;
    margin-right: 4px;
    opacity: 0.6;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pkg-list {
    list-style: none;
    margin-bottom: 48px;
    flex-grow: 1;
}

.pkg-list li {
    padding: 10px 0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-list li:last-child {
    border-bottom: none;
}

.pkg-list li::before {
    content: '→';
    color: var(--og-coral);
    font-weight: bold;
}

.pkg-cta {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.package-card.featured .pkg-cta {
    background: var(--og-coral);
    border-color: var(--og-coral);
    color: white;
}

.pkg-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--og-coral-rgb), 0.2);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    background: rgba(var(--og-coral-rgb), 0.1);
    border: 1px solid var(--og-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 800;
    color: var(--og-coral);
    font-size: 1.25rem;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item summary {
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    color: var(--og-coral);
    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 16px;
    color: var(--text-muted);
}

/* Why OG */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--og-coral);
    margin-bottom: 24px;
    display: block;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

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

/* Brief Form Specifics */
.brief-form-container {
    max-width: 700px;
    margin: 150px auto 100px;
    padding: 40px;
    background: #151518;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.form-control {
    width: 100%;
    background: #1a1a1e;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 20px;
    color: #ffffff;
    font-family: inherit;
    transition: var(--transition);
    color-scheme: dark;
}

.form-control:focus {
    outline: none;
    border-color: var(--og-coral);
    background: rgba(255, 255, 255, 0.08);
}

/* Fix for select options appearing white-on-white in some browsers */
select.form-control {
    background-color: #1a1a1e;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-control option {
    background-color: #1a1a1e;
    color: #ffffff;
}

.form-control option:checked,
.form-control option:hover {
    background-color: var(--og-coral);
    color: #ffffff;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-group input {
    margin-top: 4px;
}

.text-danger {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

/* Responsive */
@media (max-width: 980px) {

    .monthly-grid,
    .why-grid,
    .packages-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .topbar .nav-links {
        display: none;
    }

    .card {
        padding: 24px;
    }
}

/* Brands Ticker */
.brands-ticker-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.ticker-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Bricolage Grotesque', sans-serif;
    transition: var(--transition);
}

.ticker-item:hover {
    color: var(--og-coral);
    transform: scale(1.1);
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Duplicated items fix for seamless scroll */
.ticker-content {
    padding-left: 0;
    display: flex;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker-item {
        font-size: 1.5rem;
        padding: 0 20px;
    }
}