:root {
    --primary: #c48d1d;
    --secondary: #050b16;
    --accent: #ffd700;
    --text: #e0e6ed;
    --text-muted: #8892b0;
    --background: #02060c;
    --glass: rgba(196, 141, 29, 0.05);
    --glass-border: rgba(196, 141, 29, 0.25);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-theme {
    --background: #ffffff;
    --text: #050b16;
    --text-muted: #4a5568;
    --glass: rgba(196, 141, 29, 0.03);
    --glass-border: rgba(196, 141, 29, 0.15);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .bg-darker {
    background: #f8f9fa;
}

body.light-theme .glass-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.light-theme .glass-card:hover {
    background: rgba(196, 141, 29, 0.06);
    box-shadow: 0 20px 60px rgba(196, 141, 29, 0.12);
}

body.light-theme .certificate-showcase {
    background: linear-gradient(135deg, #f5f0e8, #faf8f4);
    border-top: 1px solid rgba(196, 141, 29, 0.15);
}

body.light-theme .certificate-crop {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

body.light-theme .hero {
    background: linear-gradient(135deg, #faf8f4, #f0ebe0);
}

body.light-theme .hero h1 {
    color: #050b16;
}

body.light-theme .hero .subtitle {
    color: #4a5568;
}

body.light-theme .badge {
    background: rgba(196, 141, 29, 0.1);
}

body.light-theme header {
    background: rgba(2, 6, 12, 0.95);
}

body.light-theme header.scrolled {
    background: rgba(2, 6, 12, 0.95);
}

body.light-theme header a,
body.light-theme header nav a {
    color: #e0e0e0;
}

body.light-theme header nav a:hover {
    color: var(--primary);
}

body.light-theme .faq-item {
    background: transparent;
    border-color: rgba(0,0,0,0.1);
}

body.light-theme .faq-question {
    color: var(--text);
}

body.light-theme .faq-item.active .faq-question {
    color: var(--primary);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    background-image: 
        linear-gradient(rgba(196, 141, 29, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 141, 29, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(2, 6, 12, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--primary));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 70% 50%, rgba(196, 141, 29, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
    filter: saturate(0.2) brightness(0.6);
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(196, 141, 29, 0.1);
}

h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h1 span, h2 span {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(196, 141, 29, 0.3);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 50px rgba(196, 141, 29, 0.5);
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 150px 0;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Grid & Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stats-premium .stat-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(196, 141, 29, 0.15);
    background: rgba(196, 141, 29, 0.03);
    position: relative;
    transition: all 0.4s ease;
}

.stats-premium .stat-item:hover {
    border-color: rgba(196, 141, 29, 0.5);
    box-shadow: 0 15px 40px rgba(196, 141, 29, 0.15);
    transform: translateY(-5px);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 141, 29, 0.2), rgba(196, 141, 29, 0.05));
    border: 1px solid rgba(196, 141, 29, 0.35);
    color: var(--primary);
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto 1.5rem;
    opacity: 0.6;
}

.stats-premium .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Lexend', sans-serif;
}

.stats-premium p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Light theme override for stats */
.light-theme .stats-premium .stat-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(196, 141, 29, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.light-theme .stats-premium .stat-item:hover {
    box-shadow: 0 15px 40px rgba(196, 141, 29, 0.12);
}

.light-theme .stat-icon-wrap {
    background: linear-gradient(135deg, rgba(196, 141, 29, 0.15), rgba(196, 141, 29, 0.03));
    border-color: rgba(196, 141, 29, 0.25);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 4rem 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.glass-card:hover::before {
    transform: translateX(100%);
}

.glass-card:hover {
    transform: translateY(-15px);
    background: rgba(196, 141, 29, 0.12);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(196, 141, 29, 0.25);
}

.credential-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.img-premium {
    width: 100%;
    max-width: 480px; /* Reduced slightly */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: block;
    margin: 0 auto; /* Center within column */
}

.img-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(196, 141, 29, 0.4);
    border-color: var(--primary);
}

/* Certificate Showcase */
.certificate-showcase {
    background: linear-gradient(rgba(2, 6, 12, 0.95), rgba(2, 6, 12, 0.98)), url('/assets/img/hero-bg.jpg') center/cover;
    padding: 150px 0;
    border-top: 1px solid var(--glass-border);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visual-stack {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.showcase-img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.certificate-crop {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    margin: 0 auto;
}

.showcase-cert {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    border-color: var(--primary);
}

@media (max-width: 968px) {
    .showcase-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .showcase-text h2 { font-size: 2.5rem; }
    .visual-stack { min-height: auto; }
    .showcase-card { right: 50%; transform: translateX(50%) rotate(5deg); bottom: -40px; }
}
/* Certificate/Selo Resize */
.certificate-img {
    max-width: 320px; /* Reduced from 400px */
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem; /* Reduced from 3rem */
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 20px rgba(196, 141, 29, 0.2));
}

.offer-card {
    padding: 3rem 2rem !important; /* Compacting padding */
}

.offer-card h2 {
    font-size: 2rem !important;
    margin-bottom: 2rem !important;
}

.offer-card .pricing {
    margin: 2rem 0 !important; /* Reduced from 5rem */
}

.offer-card .pricing h3 {
    font-size: 4rem !important; /* Reduced from 5rem */
}

.bg-darker {
    background: #01060b;
}

body.light-theme .bg-darker {
    background: #f8f9fa;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    filter: invert(1) brightness(2);
    opacity: 0.6;
}

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

.faq-item {
    background: var(--background);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0;
}

.faq-question {
    padding: 2.5rem 0;
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 2rem;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    transition: transform 0.3s ease;
}

/* Offer Card */
.offer-card h2 span {
    display: block;
    -webkit-text-stroke: 1.5px var(--primary);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25d366; /* Official WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128c7e;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@media (max-width: 968px) {
    h1 { font-size: 3.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .credential-grid { grid-template-columns: 1fr; gap: 3rem; }
    .visual-content { order: 2; }
    .text-content { order: 1; text-align: center; }
    section { padding: 100px 0; }
    nav { display: none; }
    .hero { height: auto; padding-top: 150px; padding-bottom: 50px; }
    .certificate-img { max-width: 100%; }
}
