:root {
    --brand-dark: #0D0D0D;
    --brand-orange: #F15A24;
    --brand-pink: #E82B8C;
    --brand-gradient: linear-gradient(135deg, #F15A24 0%, #D4336A 50%, #E82B8C 100%);
    --brand-gradient-horizontal: linear-gradient(90deg, #F15A24, #E82B8C);
    --white: #FFFFFF;
    --bg-light: #fafafa;
    --border-light: #f0f0f0;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--brand-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--brand-dark);
    line-height: 1.1;
    font-weight: 700;
}

h1 span, h2 span {
    font-style: italic;
    font-weight: 400;
}

p {
    font-size: 1.1rem;
    color: var(--brand-dark);
    opacity: 0.9;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-gradient-horizontal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
    border-radius: 2px;
}

.btn-brand-solid {
    background: var(--brand-gradient);
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(241, 90, 36, 0.2);
}

.btn-brand-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(241, 90, 36, 0.3);
}

.btn-dark-outline {
    background-color: transparent;
    border: 1px solid var(--brand-dark);
    color: var(--brand-dark) !important;
}

.btn-dark-outline:hover {
    background-color: var(--brand-dark);
    color: var(--white) !important;
}

.full { width: 100%; text-align: center; }

/* Header */
header {
    padding: 2.5rem 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}


/* Hero Section */
.hero-clean {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-clean::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 90, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-flex {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-brand {
    display: inline-block;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--brand-gradient);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.lead-brand {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.5;
}

.img-main {
    width: 100%;
    border-radius: 2px;
    box-shadow: 40px 40px 0px var(--bg-light);
}

/* Context Section */
.context-brand {
    padding: 10rem 0;
    background-color: var(--bg-light);
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-title-center h2 { font-size: 3.5rem; margin-bottom: 2rem; }

.accent-line-center {
    width: 60px;
    height: 4px;
    background: var(--brand-gradient-horizontal);
    margin: 0 auto 2.5rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.fact-item {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    position: relative;
}

.fact-item::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 40px; height: 3px;
    background: var(--brand-gradient-horizontal);
}

.fact-item h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.fact-item p { font-size: 1rem; }

/* Steps Section */
.steps-clean {
    padding: 10rem 0;
}

.section-title-left { margin-bottom: 6rem; max-width: 900px; }
.section-title-left h2 { font-size: 3.5rem; }

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

.step-card {
    display: flex;
    flex-direction: column;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--brand-gradient);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-card p {
    font-size: 1rem;
    opacity: 0.8;
}


/* Offer Section */
.offer-brand {
    padding: 10rem 0;
    background-color: var(--white);
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-light);
    padding: 5rem 4rem;
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.pricing-card.highlighted h3, 
.pricing-card.highlighted p,
.pricing-card.highlighted .amount {
    color: var(--white);
}

.price-header { margin-bottom: 3rem; }
.price-header h3 { font-size: 2.5rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.price-header p { font-weight: 600; opacity: 0.6; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em; }

.amount { font-size: 3.5rem; font-weight: 700; font-family: var(--font-headings); margin-bottom: 3rem; }
.amount span { font-size: 1rem; font-weight: 400; font-family: var(--font-body); opacity: 0.6; margin-left: 8px; }

.price-body ul { list-style: none; margin-bottom: 4rem; flex: 1; }
.price-body li { margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 1rem; display: flex; align-items: center; gap: 12px; }
.pricing-card.highlighted li { border-bottom-color: rgba(255,255,255,0.1); }

.price-body li::before {
    content: '→';
    color: var(--brand-orange);
    font-weight: 700;
}

/* Footer */
footer {
    padding: 10rem 0;
    background: var(--brand-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8rem;
    align-items: start;
}

.footer-form-col h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: rgba(255,255,255,0.08);
}



.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-desc {
    margin-top: 1.5rem;
    opacity: 0.6;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

.link-group {
    margin-bottom: 2.5rem;
}

.link-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
    margin-bottom: 1rem;
}

.socials-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.socials-brand a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.socials-brand a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    opacity: 0.4;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* CTA Banner */
.cta-banner {
    padding: 8rem 0 12rem;
    background: var(--white);
}

.cta-inner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-dark);
}

.cta-inner h2 span {
    font-style: italic;
    font-family: var(--font-headings);
    font-weight: 400;
    color: var(--brand-dark);
}

.cta-inner p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    color: var(--brand-dark);
    opacity: 0.8;
}

.cta-banner .btn-brand-solid {
    padding: 1.5rem 3.5rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem !important; }
    h2 { font-size: 2.5rem !important; }
    .hero-flex { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { margin: 0 auto 2rem; }
    .lead-brand { margin: 0 auto 3rem; }
    .facts-grid, .steps-row, .pricing-container { grid-template-columns: 1fr; }
    .pricing-card.highlighted { transform: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 6rem; }
    .cta-inner h2 { font-size: 2.5rem !important; }
    .cta-banner { padding: 6rem 0; text-align: center; }
}

