/* ============================================================
   SMART ESTATES – style.css
   Palette  : Deep Navy #0f1f3d  |  Amber #d4900a
   Feel     : Clean & Corporate
   Fonts    : Outfit (headings) · Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Brand — these are the ONLY colors used system-wide */
  --navy:          #0f1f3d;
  --navy-dark:     #081429;
  --navy-mid:      #1a3362;
  --navy-light:    #e8edf7;
  --amber:         #d4900a;
  --amber-dark:    #b37808;
  --amber-light:   #f0ad2a;
  --amber-pale:    #fdf4e1;

  /* Neutrals */
  --white:         #ffffff;
  --bg:            #f4f6fb;
  --gray-50:       #f9fafc;
  --gray-100:      #eef0f6;
  --gray-200:      #dde1ed;
  --gray-400:      #8f97b2;
  --gray-600:      #566078;
  --gray-800:      #2d3650;

  /* Semantic (kept neutral — no competing brand colors) */
  --success:       #1a9e5f;
  --success-bg:    #eaf7f1;
  --danger:        #d03b3b;
  --danger-bg:     #fdeaea;
  --info:          #2563eb;
  --info-bg:       #eff4ff;

  /* Layout */
  --sidebar-w:     255px;
  --topbar-h:      60px;

  /* Shape */
  --r-sm:  5px;
  --r-md:  10px;
  --r-lg:  16px;

  /* Shadow */
  --shadow-xs: 0 1px 3px rgba(15,31,61,0.06);
  --shadow-sm: 0 2px 8px rgba(15,31,61,0.09);
  --shadow-md: 0 6px 22px rgba(15,31,61,0.12);

  --ease: 0.18s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.65;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; color: var(--navy); line-height: 1.25; }
a { color: var(--amber); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--amber-dark); }
img { max-width: 100%; display: block; }
ul,ol { list-style: none; }
button { font-family: inherit; }

/* ══════════════════════════════════════════════════════════
   LOGIN PAGE
══════════════════════════════════════════════════════════ */
.login-page { min-height: 100vh; display: flex; }

/* Left brand panel */
.login-panel {
  width: 400px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.login-panel::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 55px solid rgba(212,144,10,0.09);
  pointer-events: none;
}
.login-panel::after {
  content: '';
  position: absolute; bottom: -70px; left: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.login-logo {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 2.75rem; z-index: 1;
}
.login-logo-icon {
  width: 48px; height: 48px;
  background: var(--amber);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.login-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: var(--white); line-height: 1.1;
}
.login-logo-text span {
  display: block;
  font-size: 0.65rem; font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}

.login-points { width: 100%; z-index: 1; }
.login-points li {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.52);
  font-size: 0.87rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.login-points li:last-child { border-bottom: none; }
.login-points li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

/* Right form panel */
.login-form-panel {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: var(--white);
}
.login-form-box { width: 100%; max-width: 390px; }
.login-form-box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.login-sub { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════
   APP SHELL
══════════════════════════════════════════════════════════ */
.app-layout { display: flex; min-height: 100vh; }

/* ── Sidebar ── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--navy);
  position: fixed; top: 0; left: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  z-index: 200;
  overflow-y: auto; overflow-x: hidden;
}

.sidebar-brand {
  padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.93rem;
  color: var(--white); line-height: 1.15;
}
.brand-name span {
  display: block;
  font-size: 0.63rem; font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.sidebar-nav { padding: 1rem 0.8rem; flex: 1; }
.nav-section { margin-bottom: 1.5rem; }
.nav-section-label {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-400);
  padding: 0 0.6rem; margin-bottom: 0.4rem;
}

.nav-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.58rem 0.75rem;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem; font-weight: 500;
  margin-bottom: 1px;
  transition: background var(--ease), color var(--ease);
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-link.active { background: var(--amber); color: var(--navy); font-weight: 700; }
.nav-link .nav-ic { width: 18px; text-align: center; font-size: 0.9rem; flex-shrink: 0; }

.nav-badge {
  margin-left: auto;
  background: var(--danger); color: var(--white);
  font-size: 0.62rem; font-weight: 700;
  padding: 1px 6px; border-radius: 99px;
}
.nav-link.active .nav-badge { background: var(--navy); color: var(--amber); }

.sidebar-footer {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sidebar-user { display: flex; align-items: center; gap: 0.7rem; }
.s-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  color: var(--amber); flex-shrink: 0; text-transform: uppercase;
}
.s-name { font-size: 0.82rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.s-role { font-size: 0.67rem; color: var(--gray-400); text-transform: capitalize; }
.s-logout {
  margin-left: auto; color: var(--gray-400);
  font-size: 1rem; transition: color var(--ease); flex-shrink: 0;
}
.s-logout:hover { color: var(--danger); }

/* ── Main Content ── */
.main-content { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-height: 100vh; }

/* ── Topbar ── */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center;
  padding: 0 1.75rem; gap: 1rem;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-xs);
}
.topbar-left { flex: 1; }
.topbar-page-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.topbar-page-sub   { font-size: 0.74rem; color: var(--gray-400); margin-top: 2px; }
.topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.topbar-date  { font-size: 0.8rem; color: var(--gray-400); white-space: nowrap; }

/* ── Page Body ── */
.page-body { padding: 1.75rem; flex: 1; }

/* ── Page Header ── */
.page-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.page-header-text h2 { font-size: 1.3rem; font-weight: 800; }
.page-header-text p  { font-size: 0.84rem; color: var(--gray-400); margin-top: 3px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.79rem; color: var(--gray-400);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: var(--gray-200); }
.breadcrumb .cur { color: var(--navy); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   STAT CARDS
══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-xs);
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stat-ic {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.stat-ic.amber { background: var(--amber-pale); color: var(--amber); }
.stat-ic.navy  { background: var(--navy-light); color: var(--navy); }
.stat-ic.green { background: var(--success-bg); color: var(--success); }
.stat-ic.red   { background: var(--danger-bg);  color: var(--danger); }

.stat-val { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 0.79rem; color: var(--gray-400); margin-top: 3px; }

/* ══════════════════════════════════════════════════════════
   CARD
══════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.card-header {
  padding: 1.05rem 1.35rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.card-title { font-family: 'Outfit', sans-serif; font-size: 0.93rem; font-weight: 700; color: var(--navy); }
.card-body   { padding: 1.35rem; }
.card-footer {
  padding: 0.9rem 1.35rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ══════════════════════════════════════════════════════════
   TABLE
══════════════════════════════════════════════════════════ */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
thead th {
  background: var(--gray-50);
  color: var(--gray-600);
  font-weight: 600; font-size: 0.73rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.7rem 1rem; text-align: left;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--ease); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }
tbody td { padding: 0.78rem 1rem; vertical-align: middle; }
.td-bold  { font-weight: 600; color: var(--navy); }
.td-small { font-size: 0.79rem; color: var(--gray-400); }

/* ══════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 99px;
  font-size: 0.72rem; font-weight: 600; white-space: nowrap;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--amber-pale);  color: var(--amber-dark); }
.badge-danger  { background: var(--danger-bg);   color: var(--danger); }
.badge-info    { background: var(--info-bg);      color: var(--info); }
.badge-gray    { background: var(--gray-100);     color: var(--gray-600); }
.badge-navy    { background: var(--navy-light);   color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap; text-decoration: none; line-height: 1.4;
}
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--navy); box-shadow: 0 3px 10px rgba(212,144,10,0.28); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--gray-600); border-color: var(--gray-200); }
.btn-outline:hover { background: var(--gray-100); color: var(--navy); }

.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-success:hover { background: #148050; border-color: #148050; color: var(--white); }

.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #b02e2e; border-color: #b02e2e; color: var(--white); }

.btn-sm  { padding: 0.3rem 0.72rem; font-size: 0.77rem; }
.btn-lg  { padding: 0.7rem 1.55rem; font-size: 0.96rem; }
.btn-block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.36rem; }
.form-label .req { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%; padding: 0.58rem 0.82rem;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; color: var(--gray-800); background: var(--white);
  outline: none; transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,144,10,0.13); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 86px; }
.form-hint  { font-size: 0.76rem; color: var(--gray-400); margin-top: 0.28rem; }
.form-error { font-size: 0.76rem; color: var(--danger);   margin-top: 0.28rem; }
.form-row   { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }

/* ══════════════════════════════════════════════════════════
   ALERTS
══════════════════════════════════════════════════════════ */
.alert {
  padding: 0.75rem 0.95rem;
  border-radius: var(--r-sm);
  font-size: 0.86rem; margin-bottom: 1.1rem;
  display: flex; align-items: flex-start; gap: 0.55rem;
  border-left: 3px solid;
}
.alert-success { background: var(--success-bg); color: #13724a; border-color: var(--success); }
.alert-warning { background: var(--amber-pale);  color: #8a5e00; border-color: var(--amber); }
.alert-danger  { background: var(--danger-bg);   color: #8b1c1c; border-color: var(--danger); }
.alert-info    { background: var(--info-bg);      color: #1a3f9e; border-color: var(--info); }

/* ══════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8,20,41,0.58);
  display: flex; align-items: center; justify-content: center;
  z-index: 900; opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 90%; max-width: 485px; max-height: 90vh; overflow-y: auto;
  transform: translateY(14px); transition: transform var(--ease);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-header {
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-size: 0.98rem; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--gray-400); font-size: 1.15rem; transition: color var(--ease); }
.modal-close:hover { color: var(--danger); }
.modal-body   { padding: 1.35rem; }
.modal-footer { padding: 1rem 1.35rem; border-top: 1px solid var(--gray-100); display: flex; justify-content: flex-end; gap: 0.55rem; }

/* ══════════════════════════════════════════════════════════
   INVOICE CARD (tenant list)
══════════════════════════════════════════════════════════ */
.invoice-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-md); padding: 1.05rem 1.2rem;
  display: flex; align-items: center; gap: 1.05rem;
  margin-bottom: 0.7rem; box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), transform var(--ease);
}
.invoice-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.inv-month-box { text-align: center; flex-shrink: 0; width: 46px; }
.inv-mon { font-family: 'Outfit', sans-serif; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); }
.inv-yr  { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1; }
.inv-sep { width: 1px; height: 38px; background: var(--gray-100); flex-shrink: 0; }
.inv-info { flex: 1; }
.inv-num  { font-size: 0.73rem; color: var(--gray-400); margin-bottom: 2px; }
.inv-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.93rem; color: var(--navy); }
.inv-amount { text-align: right; flex-shrink: 0; font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.inv-cur { font-size: 0.68rem; font-weight: 500; color: var(--gray-400); }

/* ══════════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-ic  { font-size: 2.4rem; opacity: 0.28; margin-bottom: 0.7rem; }
.empty-state h4 { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 0.3rem; }
.empty-state p  { font-size: 0.82rem; color: var(--gray-400); }

/* ══════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════ */
.d-flex    { display: flex; }
.align-c   { align-items: center; }
.justify-b { justify-content: space-between; }
.flex-1    { flex: 1; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }  .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.text-muted  { color: var(--gray-400); font-size: 0.84rem; }
.text-navy   { color: var(--navy); }
.text-amber  { color: var(--amber); }
.text-success{ color: var(--success); }
.text-danger { color: var(--danger); }
.fw-bold     { font-weight: 700; }
.font-outfit { font-family: 'Outfit', sans-serif; }
.divider     { border: none; border-top: 1px solid var(--gray-100); margin: 1.2rem 0; }
.action-btns { display: flex; gap: 0.35rem; align-items: center; }

/* ══════════════════════════════════════════════════════════
   MOBILE SIDEBAR OVERLAY
══════════════════════════════════════════════════════════ */
#sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,20,41,0.5);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
#sidebar-overlay.active { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.22s ease; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  #sidebar-overlay { display: block; }
}
@media (max-width: 640px) {
  .login-panel { display: none; }
  .page-body   { padding: 1rem; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .topbar      { padding: 0 1rem; }
  .page-header { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════
   LOGIN PAGE  (auth/login.php)
══════════════════════════════════════════════════════════ */
.login-page { min-height: 100vh; display: flex; }

.lp-left {
  width: 400px; flex-shrink: 0;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
}
.lp-left::before {
  content: ''; position: absolute; top: -90px; right: -90px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 55px solid rgba(212,144,10,0.09); pointer-events: none;
}
.lp-left::after {
  content: ''; position: absolute; bottom: -70px; left: -70px;
  width: 230px; height: 230px; border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.04); pointer-events: none;
}
.lp-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 2.75rem; z-index: 1; }
.lp-logo-ic {
  width: 48px; height: 48px; background: var(--amber);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.lp-logo-txt {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: var(--white); line-height: 1.1;
}
.lp-logo-txt span {
  display: block; font-size: 0.64rem; font-weight: 400;
  color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.lp-points { width: 100%; z-index: 1; }
.lp-points li {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.5); font-size: 0.86rem;
  padding: 0.58rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-points li:last-child { border-bottom: none; }
.lp-points li::before {
  content: ''; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
}

.lp-right {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: var(--white);
}
.lp-form-box { width: 100%; max-width: 380px; }
.lp-form-box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.lp-sub { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 2rem; }

@media (max-width: 760px) {
  .lp-left  { display: none; }
  .lp-right { padding: 2rem 1.25rem; }
}