/* ============================================================
   RIOBA J. OTEKI & COMPANY ADVOCATES — Main Stylesheet
   Design: Refined luxury law firm aesthetic
   Palette: Deep navy, obsidian black, antique gold, cream white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3461;
  --gold:       #c9a84c;
  --gold-light: #e2c27d;
  --gold-dark:  #9e7b2f;
  --cream:      #f8f5ef;
  --cream-dark: #ede8de;
  --white:      #ffffff;
  --black:      #0a0a0a;
  --gray-100:   #f4f4f4;
  --gray-200:   #e8e8e8;
  --gray-400:   #aaaaaa;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --red:        #c0392b;
  --green:      #1a6b3c;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --radius:     4px;
  --radius-lg:  8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--navy); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: 0.95rem; color: var(--gray-800); }

.section-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1rem 0 1.5rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--navy); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); border: 1.5px solid var(--navy); }
.btn-dark:hover { background: var(--navy-light); }
.btn-danger { background: var(--red); color: var(--white); border: none; }
.btn-success { background: var(--green); color: var(--white); border: none; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.7rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.15); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 72px; max-width: var(--max-width); margin: 0 auto; }
.navbar__logo { display: flex; flex-direction: column; gap: 0.1rem; }
.navbar__logo-main { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); letter-spacing: 0.03em; }
.navbar__logo-sub { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__links a { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: var(--transition); padding: 0.25rem 0; border-bottom: 1.5px solid transparent; }
.navbar__links a:hover, .navbar__links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.navbar__cta { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* HERO */
.hero { position: relative; min-height: 100vh; background: var(--navy); display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26,52,97,0.5) 0%, transparent 50%); }
.hero__gold-bar { position: absolute; right: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent); }
.hero__content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 6rem 2rem 4rem; width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.75rem; border: 1px solid rgba(201,168,76,0.4); padding: 0.5rem 1.25rem; border-radius: 2px; margin-bottom: 2rem; }
.hero__badge span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 3rem; margin-top: 5rem; padding-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.2); }
.hero__stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); border: 1px solid var(--gray-200); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__body { padding: 1.75rem; }
.card__header { padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.card__footer { padding: 1rem 1.75rem; background: var(--gray-100); border-top: 1px solid var(--gray-200); }

.service-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); border-top: 3px solid transparent; transition: var(--transition); box-shadow: var(--shadow-sm); }
.service-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-card__title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--navy); }
.service-card__desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.75; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }
.service-card__link::after { content: '→'; transition: transform var(--transition); }

.lawyer-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.lawyer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lawyer-card__photo-placeholder { width: 100%; height: 260px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(201,168,76,0.3); }
.lawyer-card__photo { width: 100%; height: 260px; object-fit: cover; }
.lawyer-card__body { padding: 1.5rem; }
.lawyer-card__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.25rem; }
.lawyer-card__spec { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.lawyer-card__info { font-size: 0.82rem; color: var(--gray-600); }
.lawyer-card__fee { font-size: 0.82rem; font-weight: 600; color: var(--navy-light); margin-top: 0.4rem; }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.28rem 0.7rem; border-radius: 2rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.badge-pending  { background: rgba(201,168,76,0.12); color: #9e7b2f; }
.badge-approved, .badge-completed, .badge-closed { background: rgba(26,107,60,0.1); color: var(--green); }
.badge-in_progress, .badge-reviewing { background: rgba(26,52,97,0.1); color: var(--navy-light); }
.badge-rejected, .badge-failed, .badge-dismissed { background: rgba(192,57,43,0.1); color: var(--red); }
.badge-cancelled { background: rgba(100,100,100,0.1); color: var(--gray-600); }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 0.4rem; }
.required { color: var(--red); }
.form-input { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; color: var(--navy); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-input::placeholder { color: var(--gray-400); }
.form-hint { font-size: 0.73rem; color: var(--gray-400); margin-top: 0.3rem; }
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.5rem; border-top: 4px solid var(--gold); }
.form-card__title { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 0.25rem; }
.form-card__sub { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* DASHBOARD */
.dash-layout { display: flex; min-height: 100vh; padding-top: 72px; }
.dash-sidebar { width: 255px; flex-shrink: 0; background: var(--navy); min-height: calc(100vh - 72px); position: sticky; top: 72px; align-self: flex-start; border-right: 1px solid rgba(201,168,76,0.1); overflow-y: auto; }
.dash-sidebar__header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dash-sidebar__role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.dash-sidebar__user { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.dash-sidebar__nav { padding: 0.75rem 0; }
.dash-nav-section { padding: 0.75rem 1.5rem 0.2rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.dash-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: var(--transition); border-left: 3px solid transparent; }
.dash-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.dash-nav-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.08); }
.dash-nav-link .icon { font-size: 1rem; width: 20px; text-align: center; }
.dash-main { flex: 1; background: var(--gray-100); }
.dash-content { padding: 2rem; max-width: 1100px; }
.dash-header { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-200); }
.dash-header h1 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); }
.dash-header p { font-size: 0.83rem; color: var(--gray-600); margin-top: 0.25rem; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); }
.stat-card--blue  { border-left-color: var(--navy-light); }
.stat-card--green { border-left-color: var(--green); }
.stat-card--red   { border-left-color: var(--red); }
.stat-card__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.stat-card__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-card__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-top: 0.3rem; }

/* TABLES */
.table-wrapper { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 1.5rem; }
.table-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.table-header h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.85rem 1rem; text-align: left; }
tbody tr { border-bottom: 1px solid var(--gray-200); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(201,168,76,0.03); }
tbody td { padding: 0.85rem 1rem; font-size: 0.84rem; color: var(--gray-800); vertical-align: middle; }
.table-empty { text-align: center; padding: 3rem; color: var(--gray-400); font-size: 0.85rem; }

/* ALERTS */
.messages-list { position: fixed; top: 82px; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; width: 360px; }
.alert { padding: 0.9rem 1.25rem; border-radius: var(--radius); font-size: 0.83rem; font-weight: 500; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; box-shadow: var(--shadow-md); animation: slideIn 0.3s ease; border-left: 4px solid; }
.alert-success { background: #f0fdf4; color: #15803d; border-color: #16a34a; }
.alert-error   { background: #fef2f2; color: var(--red); border-color: var(--red); }
.alert-info    { background: #eff6ff; color: #1d4ed8; border-color: #3b82f6; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: var(--gold); }
.alert__close { cursor: pointer; font-size: 1.1rem; background: none; border: none; color: inherit; opacity: 0.6; flex-shrink: 0; line-height: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* FOOTER */
.footer { background: var(--black); }
.footer__gold-line { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer__top { max-width: var(--max-width); margin: 0 auto; padding: 4rem 2rem 3rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__logo-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 0.2rem; }
.footer__logo-sub  { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__tagline   { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.75; }
.footer__heading   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__links     { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a   { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; gap: 0.65rem; margin-bottom: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); align-items: flex-start; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; }
.footer__bottom { max-width: var(--max-width); margin: 0 auto; padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 8rem 0 5rem; }
.page-hero__content { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.page-hero__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--white); }
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__desc { font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: 1rem; max-width: 600px; line-height: 1.8; font-weight: 300; }

/* TESTIMONIALS */
.testimonial-card { background: var(--navy-mid); padding: 2rem; border-radius: var(--radius-lg); border-top: 3px solid var(--gold); }
.testimonial-card__quote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 1.25rem; position: relative; padding-left: 1.5rem; }
.testimonial-card__quote::before { content: '"'; position: absolute; left: -0.2rem; top: -0.5rem; font-size: 3.5rem; color: var(--gold); opacity: 0.5; font-family: var(--font-display); line-height: 1; }
.testimonial-card__author { font-size: 0.8rem; font-weight: 600; color: var(--gold); }
.testimonial-card__pos { font-size: 0.73rem; color: rgba(255,255,255,0.35); margin-top: 0.15rem; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }

/* TIMELINE */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.45rem; top: 0.5rem; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.65rem; top: 0.35rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-item__date  { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 0.2rem; }
.timeline-item__title { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.2rem; }
.timeline-item__desc  { font-size: 0.83rem; color: var(--gray-600); }

/* DETAIL PANELS */
.info-panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.info-panel__header { background: var(--navy); padding: 1.25rem 1.5rem; }
.info-panel__header h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.info-panel__body { padding: 1.5rem; }
.info-row { display: flex; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--gray-200); font-size: 0.85rem; }
.info-row:last-child { border-bottom: none; }
.info-row__label { font-weight: 600; color: var(--navy); width: 140px; flex-shrink: 0; }
.info-row__value { color: var(--gray-600); }

/* MOBILE */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--navy); padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.5rem; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.35rem; font-family: var(--font-display); color: rgba(255,255,255,0.8); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1.5rem; }
  .footer__top { grid-template-columns: 1fr; }
  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; position: relative; top: 0; min-height: auto; max-height: none; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .messages-list { width: calc(100% - 2rem); right: 1rem; }
  .page-hero { padding: 6rem 0 3rem; }
  .info-row { flex-direction: column; gap: 0.25rem; }
  .info-row__label { width: auto; }
}
