:root {
  /* Premium Palette */
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --surface-alt: #EBF0F5;

  --primary: #0A192F;
  /* Deep Navy */
  --primary-light: #172A46;
  --accent: #B89225;
  /* Darker Gold for better contrast */
  /* Gold/Bronze */
  --accent-hover: #A07D1E;
  --accent-light: rgba(212, 175, 55, 0.1);

  --text: #112240;
  --text-light: #64748B;
  --border: #E2E8F0;

  --success: #10B981;
  --danger: #EF4444;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);

  --radius: 12px;
  --container: 1100px;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);

  /* Background Texture: Subtle Mesh + Gradient */
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(10, 25, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 47, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(10, 25, 47, 0.05) 0%, transparent 40%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;

  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 105px;
  /* Reduced from 120px */
  /* Space for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--primary);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Utilities === */
.hide {
  display: none !important;
}

/* Default: hide mobile-only elements on desktop */
.mobile-only {
  display: none;
}

.tr-hidden {
  display: none !important;
}

/* === Section Dividers === */
.section-divider {
  height: 40px;
  background:
    linear-gradient(to bottom right, transparent 49%, var(--border) 50%, transparent 51%);
  opacity: 0.3;
  margin: -20px 0;
}

/* === Navigation === */
.topbar {
  background: white;
  /* backdrop-filter: blur(12px); -> Removed for blend mode */
  border-bottom: 1px solid var(--border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 72px; -> Removed fixed height to allow larger logo */
  min-height: 85px;
  /* padding: 10px 0; -> Removed for strict centering */
}

@media(max-width: 600px) {
  .nav {
    min-height: 60px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  height: 85px;
  /* overflow: visible; default */
}

.logo-img {
  width: auto;
  height: 60px;
  /* Standard size */
  margin: 0;
  position: relative;
  z-index: 1001;
  vertical-align: middle;
}

@media(max-width: 600px) {
  .logo-img {
    height: 52px;
    margin: 0;
    transform: none;
    top: 0;
    left: 0;
    padding: 2px 0;
  }

  .brand {
    height: 60px;
    flex-shrink: 0;
    /* Don't squash logo */
    min-width: 0;
    margin-right: auto;
    /* Push menu to right if needed */
  }
}

@media(max-width: 400px) {
  .logo-img {
    height: 40px;
    max-height: 100%;
    width: auto;
    max-width: 180px;
    /* Prevent it getting too wide */
    transform: none !important;
    /* Force remove any scaling */
  }
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

.menu a:hover {
  color: var(--primary);
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: 0.2s;
}

.menu a:hover::after {
  width: 100%;
}

/* Mobile Menu: Hide text links to make space for CTA */
@media(max-width: 800px) {
  .menu a:not(.btn) {
    display: none;
  }

  .menu {
    gap: 12px;
  }

  .btn {
    padding: 8px 8px;
    width: auto;
    flex-grow: 0;
    font-size: 0.8rem;
    line-height: 1.2;
    min-height: 40px;
    /* Touch target size */
    letter-spacing: 0;
    /* white-space: nowrap; -> Removed to allow wrap */
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.25);
  border: 1px solid var(--primary);
}

.btn.primary:hover {
  background: #152342;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
}

.btn:not(.primary) {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:not(.primary):hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* === Hero === */
header {
  padding: 20px 0 20px;
  overflow: hidden;
  position: relative;
}

@media(max-width: 600px) {
  header {
    padding-bottom: 0;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}


.center-hero {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.center-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
  line-height: 1.1;
}

.center-hero .lead {
  margin: 0 auto 36px;
  font-size: clamp(1rem, 4vw, 1.25rem);
}

.heroL h1 {
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.heroL h1 span {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}

/* Underline effect for key words */
.heroL h1 span::after {
  content: "";
  opacity: 0.3;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 180px;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-12deg);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 90%;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  gap: 16px;
}

/* Hero Image Placeholder */
.heroImgPlaceholder {
  width: 100%;
  height: 420px;
  background: var(--surface);
  border-radius: 20px;
  border: 8px solid white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  text-align: center;
}

.heroImgPlaceholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  z-index: 0;
}

.heroImgPlaceholder span {
  z-index: 1;
  font-size: 1.2rem;
  opacity: 0.6;
}

/* Abstract shape behind hero image */
.heroR {
  position: relative;
}

.heroR::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(45deg, var(--accent-light), var(--accent-light) 10px, transparent 10px, transparent 20px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

/* === Trust Strip (Logos) === */
.trustStrip {
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .trustStrip {
    height: 60px !important;
    max-height: 60px !important;
    padding: 0;
    overflow: hidden;
  }

  .trustGrid h3 {
    font-size: 0.8rem !important;
    line-height: 1.2;
    margin: 0;
  }
}

.trustGrid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 1;
  /* Was opacity 0.6 */
  text-align: center;
}

.trustGrid h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-body);
}



.trustLabel {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-light);
  font-weight: 600;
}

.logoBox {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--primary);
}

@media (max-width: 500px) {
  .trustGrid {
    gap: 20px;
  }

  .logoBox {
    font-size: 0.9rem;
  }
}

/* === Calculator === */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.calcHead {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--surface-alt);
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (max-width: 600px) {
  .calcHead {
    justify-content: center;
    text-align: center;
    padding: 16px 16px;
  }
}

.calcHead .tabs {
  display: flex;
  background: var(--border);
  padding: 4px;
  border-radius: 10px;
}

.tab {
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
}

.tab:hover {
  color: var(--primary);
}

.tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

@media(max-width: 600px) {
  .calcHead .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 4px;
    padding: 4px;
    border-radius: 8px;
  }

  .tab {
    padding: 10px 4px;
    font-size: 0.85rem;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    border-radius: 6px;
  }
}

.calcBody {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media(max-width: 900px) {
  .calcBody {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media(max-width: 500px) {
  .calcBody {
    padding: 12px;
  }

  /* Fix for sticky selects/inputs */
  .grid2>div {
    min-width: 0;
  }
}

/* Inputs */
.box {
  background: transparent;
  border: none;
  padding: 0;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid2>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.grid2>div>label {
  min-height: 40px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}

@media(max-width: 500px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--primary);
  background: var(--surface);
  transition: 0.2s;
}

input {
  height: 48px;
}

select {
  width: 100%;
  padding: 12px 35px 12px 14px;
  /* extra padding on right for arrow */
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--primary);
  background: var(--surface) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23112240" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 14px center;
  background-size: 16px;
  transition: 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

/* Strategy Highlight */
#strategyWrap,
#rentStrategyWrap {
  grid-column: 1 / -1;
  background: linear-gradient(to right, var(--surface-alt), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(184, 146, 37, 0.1);
  position: relative;
  overflow: hidden;
}

#strategyWrap::before,
#rentStrategyWrap::before {
  content: "KLUCZOWE";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-bottom-left-radius: 8px;
  letter-spacing: 0.5px;
}

#strategyWrap label,
#rentStrategyWrap label {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

#strategyWrap label::after,
#rentStrategyWrap label::after {
  content: "⬇️";
  /* Suggesting to look below/choose */
  font-size: 0.9em;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

#strategyWrap select,
#rentStrategyWrap select {
  font-weight: 600;
  border-color: var(--accent);
  color: var(--primary);
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

#strategyWrap select:hover,
#rentStrategyWrap select:hover {
  border-color: var(--accent-hover);
}

#strategyWrap select:focus,
#rentStrategyWrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 146, 37, 0.2);
}

/* Results KPI */
.results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow-x: auto;
  /* Allow scroll if number is huge */
}

.kpi::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--primary);
}

.kpi .t {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

/* === Global Desktop Spacing === */
@media(min-width: 801px) {

  section,
  main {
    padding: 30px 0;
    /* Reduced from 60px - Tight fit */
    scroll-margin-top: 100px;
  }
}

.kpi .v {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0 4px;
  font-family: var(--font-heading);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
}

.kpi .s {
  font-size: 0.85rem;
  color: var(--text-light);
}

.benefit {
  background: var(--primary);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--primary-light);
}

.benefit b {
  color: var(--accent);
}

.benefit small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
}

/* === Schedule Table === */
section {
  padding: 80px 0;
  scroll-margin-top: 80px;
  /* Fix for sticky header */
}

#harmonogram {
  background: var(--surface);
}

.scheduleWrap {
  border: 1px solid var(--border);
  /* explicit overflow visible to allow sticky headers on desktop */
  overflow: visible;
  box-shadow: var(--shadow-sm);
}

@media(max-width: 650px) {
  .scheduleWrap {
    overflow-x: auto;
  }
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.schedule th {
  background: var(--surface-alt);
  text-align: right;
  padding: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

/* Sticky Clone Specifics */
.sticky-clone th {
  border-bottom: 2px solid var(--primary);
  /* subtle highlight */
}

.schedule td {
  text-align: right;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

.schedule tr:last-child td {
  border-bottom: none;
}

.schedule th:first-child,
.schedule td:first-child {
  text-align: left;
}

@media (max-width: 600px) {

  /* Utilities for shorter headers */
  .nomobile {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  .curr {
    display: none;
  }

  /* 1. Reduce whitespace */
  body {
    padding-top: 80px;
    /* Reduced from 100px */
  }

  /* 2. Remove header padding on mobile completely */
  header {
    padding: 0 0 20px;
  }

  #scheduleExpand .btn {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    height: auto !important;
    min-height: 44px;
    line-height: 1.3 !important;
    max-width: 100%;
    width: 100%;
    padding: 12px 6px !important;
    display: block !important;
    text-overflow: clip !important;
    overflow: visible !important;
  }

  .break-on-small {
    display: block;
    width: 100%;
    margin-top: 2px;
  }

  /* 3. Increase section spacing dramatically */
  section,
  main {
    padding: 27px 0;
    /* Reduced from 55px - Halved */
    scroll-margin-top: 27px;
  }

  /* 2. Revert to left align (default), hide menu */
  /* .nav { justify-content: center; } -> Removed check */
  .menu {
    display: flex;
  }

  /* Hide text links, keep button */
  .menu>a:not(.btn) {
    display: none;
  }

  /* 3. Schedule Table - Fit to screen */
  .scheduleWrap {
    position: relative;
    overflow-x: auto;
  }

  .schedule {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .schedule th,
  .schedule td {
    padding: 6px 4px;
    /* Slightly looser padding */
    font-size: 0.65rem;
    /* ~10px */
    letter-spacing: -0.03em;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .schedule th {
    line-height: 1.1;
    vertical-align: bottom;
  }

  /* Force narrow columns where possible */
  .schedule th:first-child,
  .schedule td:first-child {
    width: 35px;
    /* Month column wider */
    text-align: center;
    padding-left: 2px;
  }

  /* Scroll hint if still needed (mostly effectively fitted now) */
  .scheduleWrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05));
    pointer-events: none;
  }
}

/* === Testimonials === */
.testimGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimCard {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimCard::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: var(--font-heading);
}

.testimText {
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimAuthor {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.testimMeta {
  font-size: 0.85rem;
  color: var(--text-light);
}


/* === Contact & How it works === */
.howGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 800px) {
  .howGrid {
    grid-template-columns: 1fr;
  }
}

.howStep {
  background: var(--surface);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.howNr {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.ctaBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--primary);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-gold);
}

@media(max-width: 800px) {
  .ctaBox {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }

  .auditGrid {
    grid-template-columns: 1fr;
    /* Stack cards */
  }

  .auditCard {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  /* Center buttons */
  .ctaBox .btn-row {
    justify-content: center !important;
  }
}

.ctaBox h2 {
  color: white;
}

.ctaBox p {
  color: rgba(255, 255, 255, 0.8);
}

.auditCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.auditSub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 2px;
}

.auditGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

/* Inputs in dark bg */
.ctaBox input,
.ctaBox textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.ctaBox input:focus,
.ctaBox textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.ctaBox .btn.primary {
  background: var(--accent);
  color: var(--primary);
}

.ctaBox .btn.primary:hover {
  background: #E5C355;
  border-color: #E5C355;
}

.ctaBox .btn:not(.primary) {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.ctaBox .btn:not(.primary):hover {
  border-color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
  background: white;
}

/* === Ultra Small Screens (Galaxy Z Flip / Fold folded / iPhone SE / Mini) === */
@media(max-width: 400px) {

  /* Header Fixes */
  .logo-img {
    height: 125px;
  }

  .nav .btn {
    padding: 6px 8px;
    font-size: 0.75rem;
    min-height: 36px;
  }

  /* Hero Fixes */
  .heroActions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .heroActions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === About Section === */
.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

@media(max-width: 800px) {
  .aboutGrid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.aboutImage {
  display: flex;
  justify-content: center;
}

.avatarPlaceholder {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--accent);
}
.toast {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent);
  z-index: 9999;
  font-weight: 500;
  text-align: center;
}
