@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800;900&display=swap');

/* Professional Neo-Brutalist Theme Variables */
:root {
  --bg-color: #fffaf0;
  /* Softer Cream background */
  --border-color: #0d0d0d;
  /* Deep black for borders */
  --text-color: #0d0d0d;

  /* Soft vibrant pastels */
  --primary-color: #a7f3d0;
  /* Soft Mint / Emerald */
  --secondary-color: #fca5a5;
  /* Soft Coral / Red */
  --business-color: #fde047;
  /* Soft Yellow */
  --button-color: #a7f3d0;
  --button-color-alt: #fbcfe8;
  /* Soft Pink */

  /* Brutalist utilities */
  --brutal-border: 4px solid var(--border-color);
  --brutal-shadow: 8px 8px 0px 0px var(--border-color);
  --brutal-radius: 16px;
  /* Softness */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  padding-top: 80px;
  /* Space for fixed header */
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--bg-color);
  border-bottom: var(--brutal-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.header-logo {
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0px var(--border-color));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.header-cta {
  background-color: var(--button-color-alt);
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 3px 3px 0px 0px var(--border-color);
  transition: transform 0.1s;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
}

.header-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px 0px var(--border-color);
}

/* Component: Brutal Buttons */
.brutal-button {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--text-color);
  border: var(--brutal-border);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 6px 6px 0px 0px var(--border-color);
  transition: all 0.15s ease;
  text-align: center;
  text-transform: uppercase;
}

.button-primary {
  background-color: var(--button-color);
}

.button-secondary {
  background-color: var(--button-color-alt);
}

.brutal-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px 0px var(--border-color);
}

.brutal-button:active {
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0px 0px var(--border-color);
}

/* Component: Brutal Cards */
.brutal-card {
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow);
  padding: 3rem;
  background-color: #fff;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
  height: 100%;
}

.brutal-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--border-color);
}

/* Layout: Section Padding */
.section-standard {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--primary-color);
  border-top: var(--brutal-border);
  border-bottom: var(--brutal-border);
  padding: 6rem 0;
}

/* Section 1: Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: calc(70vh - 80px);
  padding: 1rem 0 2rem 0;
  box-sizing: border-box;
  gap: 1rem;
}

.hero.container {
  max-width: 1350px;
  padding: 0 clamp(2rem, 6vw, 5rem);
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  text-transform: uppercase;
  margin: 1rem;
  width: 100%;
  text-align: center;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  max-width: 850px;
  margin: 0 auto 2rem auto;
  text-align: center;
  line-height: 1.5;
  color: #333;
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
  }
}

.hero-content {
  flex: 0.8;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero-content {
    margin-left: 2rem;
  }
}

.pain-points-card {
  background: #fff;
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.pain-point-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pain-point-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  flex-shrink: 0;
}

.pain-point-item:nth-child(2) .pain-point-icon {
  background-color: var(--secondary-color);
}

.pain-point-item:nth-child(3) .pain-point-icon {
  background-color: var(--business-color);
}

.pain-point-item:nth-child(4) .pain-point-icon {
  background-color: var(--button-color-alt);
}

.pain-point-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow);
  background: white;
  position: relative;
  z-index: 5;
  object-fit: cover;
}

/* Decorative Brutalist Shapes */
.brutal-decoration {
  position: absolute;
  border: var(--brutal-border);
  z-index: 1;
}

.shape-1 {
  background-color: var(--secondary-color);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: -35px;
  right: -35px;
  box-shadow: 4px 4px 0px 0px var(--border-color);
}

.shape-2 {
  background-color: var(--business-color);
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -30px;
  transform: rotate(20deg);
  box-shadow: 4px 4px 0px 0px var(--border-color);
}

.diagram-wrapper {
  margin: 3.5rem auto;
  text-align: center;
  max-width: 960px;
  width: 100%;
}

.solution-diagram {
  width: 100%;
  height: auto;
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  box-shadow: var(--brutal-shadow);
  background: white;
  display: block;
}

/* Component: Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Component: Workflow List */
.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.workflow-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  padding: 2rem;
  box-shadow: var(--brutal-shadow);
}

.workflow-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  -webkit-text-stroke: 2px var(--border-color);
  line-height: 1;
}

.workflow-content h3 {
  margin-top: 0.5rem;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Component: Leasing Banner */
.leasing-banner {
  background-color: var(--business-color);
  border: var(--brutal-border);
  border-radius: var(--brutal-radius);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--brutal-shadow);
  margin: 6rem 0;
}

.pricing-badge {
  display: inline-block;
  background-color: #fff;
  border: var(--brutal-border);
  padding: 1rem 2rem;
  font-size: 2.5rem;
  font-weight: 900;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px 0px var(--border-color);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3rem;
  border-top: var(--brutal-border);
  font-weight: 800;
  margin-top: 4rem;
  background-color: #fff;
}

/* Static Brutal Card (no hover effect) */
.brutal-card-static:hover {
  transform: none;
  box-shadow: var(--brutal-shadow);
}

/* Styled List Items */
.safety-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.safety-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.safety-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.9rem;
  color: var(--border-color);
}

/* New Utility Classes */
.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
  margin-top: -1.5rem;
}

.section-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.25rem;
}

.pt-0 {
  padding-top: 0 !important;
}

/* Leasing section text */
.leasing-lead {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.leasing-terms {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

/* Footer links */
.footer-link {
  text-decoration: underline;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Card color overrides */
.card-primary { background-color: var(--primary-color) !important; }
.card-secondary { background-color: var(--secondary-color) !important; }
.card-alt { background-color: var(--button-color-alt) !important; }