/* ========================
   VARIABLES & RESET
   ======================== */
:root {
    --primary: #0f4c81;       /* Classic Blue - Trust color */
    --secondary: #eab308;     /* Gold accents - Wealth */
    --text-dark: #1e293b;     /* Dark Grey for text */
    --text-light: #64748b;    /* Muted text */
    --bg-white: #ffffff;
    --bg-grey: #f8fafc;
    --bg-blue-dark: #0f172a;
    --border: #e2e8f0;
    
    --container: 1140px;
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--bg-white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }

/* ========================
   COMPONENTS
   ======================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 30px; font-weight: 500; border-radius: 4px; cursor: pointer; text-align: center; border: none; }
.btn-primary { background: var(--secondary); color: #fff; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4); }
.btn-primary:hover { background: #ca8a04; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-full { width: 100%; }

.section { padding: 80px 0; }
.bg-grey { background: var(--bg-grey); }
.bg-blue-dark { background: var(--bg-blue-dark); color: white; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { font-size: 2.2rem; margin-bottom: 15px; color: var(--primary); }
.light-text h2 { color: white; }

/* ========================
   HEADER
   ======================== */
.header { height: 80px; background: white; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; display: flex; align-items: center; }
.header-row { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.nav-menu { display: none; gap: 30px; }
@media(min-width: 768px) { .nav-menu { display: flex; } }
.nav-menu a { font-weight: 500; color: var(--text-dark); }
.nav-menu a:hover { color: var(--primary); }

/* ========================
   HERO SECTION
   ======================== */
.hero { 
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('hero-office.jpg'); 
    background-size: cover; 
    background-position: center; 
    padding: 80px 0; 
    min-height: 100vh; /* Full screen feel */
    display: flex; 
    align-items: center; 
}

/* PROMPT: hero-office.jpg -> Bright modern corporate office, blurred background, people working in suits, high key lighting, stock photo style. */

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width: 992px) { .hero-grid { grid-template-columns: 1.2fr 0.8fr; } }

.tag { background: #dbeafe; color: var(--primary); padding: 5px 12px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; color: var(--text-dark); margin-bottom: 20px; font-weight: 700; }
.hero-sub { font-size: 1.2rem; color: var(--text-light); margin-bottom: 30px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 20px; }
.feat-item { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--primary); }

/* HERO FORM */
.hero-form-card { background: white; padding: 40px; border-radius: 8px; box-shadow: var(--shadow); border-top: 5px solid var(--primary); }
.form-head { text-align: center; margin-bottom: 20px; }
.form-head h3 { font-size: 1.5rem; margin-bottom: 5px; }
.form-head p { font-size: 0.9rem; color: var(--text-light); }
.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 5px; color: var(--text-dark); }
.input-group input { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; transition: 0.3s; }
.input-group input:focus { border-color: var(--primary); outline: none; background: #f0f9ff; }
.form-disclaimer { font-size: 0.75rem; text-align: center; color: var(--text-light); margin-top: 15px; }

/* ========================
   TRUST STRIP
   ======================== */
.trust-strip { background: #f1f5f9; padding: 20px 0; text-align: center; border-bottom: 1px solid var(--border); }
.trust-strip p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.logos { display: flex; justify-content: center; gap: 30px; font-weight: 700; color: #94a3b8; font-size: 1.2rem; flex-wrap: wrap; }

/* ========================
   CARDS GRID
   ======================== */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media(min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: white; padding: 30px; border-radius: 8px; box-shadow: var(--shadow); transition: 0.3s; border: 1px solid var(--border); }
.card:hover { transform: translateY(-5px); }
.icon-circle { width: 60px; height: 60px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-light); }

/* ========================
   EXPERT SECTION
   ======================== */
.split-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media(min-width: 768px) { .split-grid { grid-template-columns: 1fr 1fr; } }
.expert-img-wrapper img { width: 100%; border-radius: 8px; box-shadow: var(--shadow); }
.subtitle { color: var(--secondary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.expert-content h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.role { font-weight: 500; color: var(--text-dark); margin-bottom: 20px; border-bottom: 2px solid var(--border); padding-bottom: 20px; display: inline-block; }
.expert-content p { color: var(--text-light); margin-bottom: 15px; }
.stats-row { display: flex; gap: 40px; margin-top: 30px; }
.stat strong { display: block; font-size: 2rem; color: var(--primary); line-height: 1; }
.stat span { font-size: 0.9rem; color: var(--text-light); }

/* ========================
   REVIEWS
   ======================== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media(min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
.review-box { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 8px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); }
.review-box p { font-style: italic; font-size: 1.1rem; margin-bottom: 20px; color: #e2e8f0; }
.user { display: flex; align-items: center; gap: 15px; }
.user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.user h5 { font-weight: 700; color: white; margin-bottom: 2px; }
.user span { font-size: 0.85rem; color: #cbd5e1; }

/* ========================
   FOOTER
   ======================== */
.footer { background: #020617; color: #94a3b8; padding: 60px 0 20px; border-top: 1px solid #1e293b; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media(min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.f-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.f-col a { display: block; margin-bottom: 10px; }
.f-col a:hover { color: white; }
.footer-bottom { text-align: center; border-top: 1px solid #1e293b; padding-top: 20px; }
.disclaimer-text { font-size: 0.75rem; margin-top: 10px; opacity: 0.6; }

/* MOBILE RESPONSIVE TWEAKS */
@media(max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .header-cta { display: none; } /* Скрываем кнопку в шапке на мобилках */
}