/* CSS RESET & BRAND DESIGN SYSTEM BASED ON LOGO */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

:root {
--bg-dark: #0b0c10;
--bg-card: rgba(255, 255, 255, 0.025);
--card-border: rgba(240, 203, 103, 0.18);
--card-border-hover: rgba(240, 203, 103, 0.45);

/* Soft Warm Yellow Accent */
--yellow-primary: #f0cb67;
--yellow-light: #f7e6b5;
--amber-accent: #c85a32;
--amber-glow: rgba(200, 90, 50, 0.35);

--text-main: #f8f9fa;
--text-muted: #9da3b4;
--font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
--font-accent: 'Cinzel', serif;
--container-width: 1240px;


}

body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: var(--font-main);
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
background-image:
radial-gradient(circle at 80% 10%, rgba(240, 203, 103, 0.06) 0%, transparent 40%),
radial-gradient(circle at 15% 85%, rgba(200, 90, 50, 0.06) 0%, transparent 45%),
radial-gradient(circle at 50% 50%, rgba(15, 16, 22, 1) 0%, rgba(11, 12, 16, 1) 100%);
background-attachment: fixed;
}

a {
color: inherit;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 24px;
}

/* HEADER */
.site-header {
padding: 18px 0;
border-bottom: 1px solid rgba(240, 203, 103, 0.12);
backdrop-filter: blur(16px);
position: sticky;
top: 0;
z-index: 100;
background: rgba(11, 12, 16, 0.88);
}

.header-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
}

.brand-logo-container {
display: flex;
align-items: center;
gap: 20px;
}

/* LARGE PROMINENT LOGO SIZE FOR DESKTOP (120px) */
.brand-logo-img {
height: 120px;
width: auto;
filter: drop-shadow(0 0 16px rgba(240, 203, 103, 0.28));
object-fit: contain;
transition: transform 0.3s ease;
}

.brand-logo-img:hover {
transform: scale(1.03);
}

.brand-title-group {
display: flex;
flex-direction: column;
}

.brand-name {
font-size: 1.35rem;
font-weight: 800;
letter-spacing: 0.04em;
color: var(--yellow-primary);
text-transform: uppercase;
}

.brand-sub {
font-size: 0.85rem;
color: var(--text-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 500;
}

.header-actions {
display: flex;
align-items: center;
gap: 16px;
}

.phone-button {
font-size: 0.95rem;
font-weight: 700;
color: var(--text-main);
display: flex;
align-items: center;
gap: 8px;
padding: 12px 22px;
border-radius: 30px;
border: 1px solid rgba(240, 203, 103, 0.25);
background: rgba(255, 255, 255, 0.02);
}

.phone-button:hover {
border-color: var(--yellow-primary);
box-shadow: 0 0 18px rgba(240, 203, 103, 0.2);
color: var(--yellow-light);
}

.phone-button i {
color: var(--yellow-primary);
}

.btn-tg {
background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
color: #ffffff;
padding: 12px 24px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 18px rgba(42, 171, 238, 0.25);
}

.btn-tg:hover {
transform: translateY(-2px);
box-shadow: 0 6px 24px rgba(42, 171, 238, 0.4);
}

/* HERO SECTION */
.hero-section {
padding: 60px 0 80px;
flex-grow: 1;
}

.section-badge {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(240, 203, 103, 0.08);
border: 1px solid rgba(240, 203, 103, 0.25);
padding: 6px 18px;
border-radius: 30px;
font-size: 0.8rem;
color: var(--yellow-light);
font-weight: 700;
margin-bottom: 24px;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.section-badge i {
color: var(--amber-accent);
}

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

.hero-title {
font-size: 3.4rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 12px;
letter-spacing: -0.02em;
color: #ffffff;
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--amber-accent);
font-weight: 600;
margin-bottom: 32px;
display: flex;
align-items: center;
gap: 10px;
}

.hero-subtitle::before {
content: '';
width: 24px;
height: 2px;
background: var(--amber-accent);
display: inline-block;
}

/* TILES GRID */
.facts-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.fact-card {
background: var(--bg-card);
border: 1px solid var(--card-border);
border-radius: 18px;
padding: 24px;
backdrop-filter: blur(12px);
position: relative;
overflow: hidden;
transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fact-card::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 60px;
height: 60px;
background: radial-gradient(circle at top right, rgba(240, 203, 103, 0.12), transparent 70%);
pointer-events: none;
}

.fact-card:hover {
transform: translateY(-5px);
border-color: var(--card-border-hover);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(240, 203, 103, 0.08);
}

.fact-icon-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 10px;
}

.fact-icon-box {
width: 38px;
height: 38px;
border-radius: 10px;
background: rgba(240, 203, 103, 0.08);
border: 1px solid rgba(240, 203, 103, 0.22);
display: flex;
align-items: center;
justify-content: center;
color: var(--yellow-primary);
font-size: 1rem;
}

.fact-title {
font-size: 1.15rem;
font-weight: 700;
color: var(--text-main);
}

.fact-desc {
font-size: 0.92rem;
color: var(--text-muted);
line-height: 1.5;
}

.fact-desc strong {
color: #ffffff;
}

/* FOUNDER PORTRAIT */
.portrait-wrapper {
position: relative;
display: flex;
justify-content: center;
}

.portrait-card {
position: relative;
border-radius: 24px;
overflow: hidden;
border: 1px solid var(--card-border);
background: radial-gradient(circle at 50% 30%, rgba(240, 203, 103, 0.08) 0%, rgba(11, 12, 16, 0.9) 100%);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
width: 100%;
}

.portrait-card img {
width: 100%;
height: auto;
object-fit: cover;
object-position: top center;
}

.portrait-overlay-badge {
position: absolute;
bottom: 16px;
left: 16px;
right: 16px;
background: rgba(11, 12, 16, 0.88);
border: 1px solid rgba(240, 203, 103, 0.22);
backdrop-filter: blur(16px);
padding: 16px 20px;
border-radius: 16px;
display: flex;
align-items: center;
gap: 14px;
}

.portrait-overlay-badge i {
font-size: 1.6rem;
color: var(--amber-accent);
}

.badge-info-title {
font-size: 0.92rem;
font-weight: 700;
color: var(--text-main);
display: block;
}

.badge-info-sub {
font-size: 0.8rem;
color: var(--text-muted);
}

/* CALL TO ACTION BOX */
.cta-banner {
margin-top: 50px;
background: linear-gradient(135deg, rgba(240, 203, 103, 0.06) 0%, rgba(200, 90, 50, 0.04) 100%);
border: 1px solid var(--card-border);
border-radius: 22px;
padding: 36px 40px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
position: relative;
overflow: hidden;
}

.cta-banner::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(240, 203, 103, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.cta-text h3 {
font-size: 1.55rem;
font-weight: 800;
margin-bottom: 6px;
color: #ffffff;
}

.cta-text p {
color: var(--text-muted);
font-size: 0.98rem;
}

.cta-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn-gold {
background: var(--yellow-primary);
color: #0d0e12;
padding: 14px 28px;
border-radius: 30px;
font-size: 0.95rem;
font-weight: 800;
display: inline-flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 20px rgba(240, 203, 103, 0.25);
text-transform: uppercase;
letter-spacing: 0.03em;
}

.btn-gold:hover {
transform: translateY(-2px);
background: var(--yellow-light);
box-shadow: 0 6px 28px rgba(240, 203, 103, 0.35);
}

/* FOOTER */
.site-footer {
padding: 30px 0;
border-top: 1px solid rgba(240, 203, 103, 0.12);
margin-top: auto;
color: var(--text-muted);
font-size: 0.85rem;
background: rgba(11, 12, 16, 0.9);
}

.footer-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-phone {
color: var(--yellow-primary);
font-weight: 700;
}

.footer-phone:hover {
color: var(--yellow-light);
}

/* MOBILE ADAPTABILITY */
@media (max-width: 1024px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.portrait-wrapper {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.7rem;
    text-align: center;
}

.hero-subtitle {
    justify-content: center;
}

.hero-subtitle::before {
    display: none;
}

.section-badge {
    margin: 0 auto 20px;
    display: flex;
    width: max-content;
}


}

@media (max-width: 768px) {
.brand-logo-img {
height: 75px;
}

.header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 2.1rem;
}

.facts-grid {
    grid-template-columns: 1fr;
}

.cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
}

.cta-buttons {
    width: 100%;
    flex-direction: column;
}

.btn-gold, .btn-tg {
    width: 100%;
    justify-content: center;
}


}