:root {
    --primary: #0a2e1d; /* Deep Forest Green */
    --primary-light: #154c33;
    --accent: #c5a059; /* Elegant Gold */
    --accent-dark: #a68545;
    --light: #f5f7f6; /* Soft green-white */
    --white: #ffffff;
    --dark: #05140b; /* Deepest Green/Black */
    --text: #1a1a1a;
    --text-light: #555555;
    --font-primary: 'Montserrat', sans-serif;
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.centered-h {
    text-align: center;
}

section {
    padding: 100px 0;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.highlight-text {
    color: var(--accent);
}

.accent-text {
    color: var(--primary);
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cta-small {
    background-color: var(--accent);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
}

/* Sections */
.dark-section {
    background-color: var(--primary);
    color: var(--white);
}

.light-section {
    background-color: var(--light);
}

.gradient-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.accent-section {
    background-color: var(--accent);
    color: var(--primary);
}

/* DOBRA 01 - Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.floating-animation {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Authority Section */
.authority-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 0;
}

.map-illustration {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Grid Sections */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse {
    direction: rtl;
}

.reverse .text-box, .reverse .image-box {
    direction: ltr;
}

/* Benefit Looping Scroller */
.benefit-scroller {
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.scroller-inner {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.scroller-inner span {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 40px;
    opacity: 0.7;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Profile / About Styling */
.profile-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 450px;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    border-radius: 5px;
}

.profile-info {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    text-align: left;
}

.profile-info strong {
    display: block;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card .client-name {
    font-weight: 700;
    color: var(--primary);
}

.white-text {
    color: var(--white);
}

/* Checklist Styling */
.check-list {
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.check-item i {
    color: var(--accent);
    flex-shrink: 0;
}

/* Comparison Table */
.table-container {
    margin-top: 60px;
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background-color: var(--dark);
    font-size: 1.2rem;
}

.comparison-table td:first-child {
    background-color: rgba(197, 160, 89, 0.05);
    font-weight: 600;
}

.comparison-table td i {
    vertical-align: middle;
    margin-right: 10px;
}

.comparison-table td [data-lucide="check"] { color: var(--accent); }
.comparison-table td [data-lucide="x"] { color: #888; }

/* Kit Cards */
.kit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.kit-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.kit-card:hover {
    transform: translateY(-10px);
}

.kit-card.highlight {
    border: 2px solid var(--accent);
    background-color: rgba(197, 160, 89, 0.02);
}

.kit-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.kit-card .count {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Pricing Section */
.offer-section {
    background: radial-gradient(circle at top, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 150px 0;
}

.pricing-card {
    background-color: var(--white);
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.ribbon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary);
    padding: 10px 40px;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.condition {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: #999;
}

.new-price {
    margin: 30px 0;
}

.new-price .currency {
    font-size: 1.2rem;
    display: block;
}

.new-price .installments {
    font-size: 1.5rem;
}

.new-price .price {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.cash-price {
    font-weight: 700;
    margin-bottom: 40px;
}

.btn.lg {
    width: 100%;
    padding: 25px;
    font-size: 1.4rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* Footer Section */
#footer {
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
}

.logo-small {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .section-grid { gap: 40px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .hero-content h1 { font-size: 3rem; }
    header nav ul { display: none; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-grid { grid-template-columns: 1fr; text-align: center; }
    .reverse { direction: ltr; }
    .check-list { grid-template-columns: 1fr; }
    .kit-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .authority-flex { flex-direction: column; gap: 40px; }
    .stat-item h2 { font-size: 4rem; }
    .profile-info { position: static; margin-top: 20px; width: 100%; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
}

/* Before After Placeholders */
.ba-placeholder {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.hair-thin {
    background: linear-gradient(to bottom, #f0e6e6, #fff);
}

.hair-thin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.hair-full {
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.hair-full::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 80%);
}

.before-after {
    display: flex;
    gap: 10px;
}

.ba-item {
    flex: 1;
    position: relative;
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--white);
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 3px;
}

.ba-label.highlight {
    background: var(--accent);
    color: var(--primary);
}
