/* ========================================
   Grass Root Advance Storage Solutions
   Global Stylesheet
   ======================================== */

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

:root {
  --green-dark:   #1a4731;
  --green-mid:    #2d7a4f;
  --green-light:  #4caf78;
  --green-pale:   #e8f5ee;
  --accent:       #f4a31b;
  --accent-dark:  #c97d0a;
  --text-dark:    #1c2b22;
  --text-mid:     #3d5247;
  --text-light:   #6b8c78;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.15);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
  --font-sans:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); }

/* --- Layout Helpers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 71, 49, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 2px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text span { display: block; font-size: 0.72rem; font-weight: 400; opacity: .75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: var(--green-dark);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a6040 50%, #1e5538 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(76, 175, 120, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(244, 163, 27, 0.10) 0%, transparent 50%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,163,27,.15);
  border: 1px solid rgba(244,163,27,.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.hero-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: 0.82rem; }
.hero-card.featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
}
.hero-card.featured .hero-card-icon { font-size: 2.4rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card:last-child { grid-column: 1 / -1; }
}

/* =========================================================
   ABOUT STRIP
   ========================================================= */
.about-strip {
  background: var(--green-pale);
  padding: 60px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  background: var(--white);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-placeholder {
  height: 340px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: grid;
  place-items: center;
  font-size: 5rem;
}
.about-badge-float {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-float strong { display: block; font-size: 1.5rem; color: var(--green-dark); }
.about-badge-float span { font-size: 0.78rem; color: var(--text-light); }

@media (max-width: 768px) {
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
}

/* =========================================================
   SERVICES / FEATURES
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-mid);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); }

/* =========================================================
   JOURNEY / PROCESS
   ========================================================= */
.journey-section { background: var(--green-dark); }
.journey-section .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.journey-section .section-title, .journey-section .section-sub { color: var(--white); }
.journey-section .section-sub { color: rgba(255,255,255,.65); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.journey-step {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--transition);
}
.journey-step:hover { background: rgba(255,255,255,.12); }
.step-number {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.journey-step h4 { color: var(--white); margin-bottom: 8px; }
.journey-step p { color: rgba(255,255,255,.6); font-size: 0.88rem; }

/* =========================================================
   PROJECTS TABLE
   ========================================================= */
.projects-hero {
  background: linear-gradient(135deg, var(--green-dark), #2a6040);
  padding: 140px 0 80px;
}
.projects-hero h1 { color: var(--white); }
.projects-hero p { color: rgba(255,255,255,.75); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.projects-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}
.projects-table thead {
  background: var(--green-dark);
  color: var(--white);
}
.projects-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}
.projects-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-mid);
}
.projects-table tbody tr:last-child td { border-bottom: none; }
.projects-table tbody tr:hover { background: var(--green-pale); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-done { background: #dcfce7; color: #166534; }
.badge-ongoing { background: #fef3c7; color: #92400e; }

/* =========================================================
   SECTORS / SERVICES PAGE
   ========================================================= */
.cold-hero {
  background: linear-gradient(135deg, var(--green-dark), #2a6040);
  padding: 140px 0 80px;
}
.cold-hero h1 { color: var(--white); }
.cold-hero p { color: rgba(255,255,255,.75); }

.solution-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: var(--white);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.solution-card-head {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  padding: 28px 24px;
  color: var(--white);
}
.solution-card-head .icon { font-size: 2.2rem; margin-bottom: 12px; }
.solution-card-head h3 { color: var(--white); font-size: 1.2rem; }
.solution-card-body { padding: 24px; }
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.solution-list li:last-child { border-bottom: none; }
.solution-list li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--green-dark), #2a6040);
  padding: 140px 0 80px;
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text p {
  color: rgba(255,255,255,.9);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,122,79,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #e8920a 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--text-dark); margin-bottom: 12px; }
.cta-banner p { color: rgba(28,43,34,.75); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover { background: #0f2e1c; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0d2318;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; opacity: .7; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.footer-contact li span:first-child { flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   UTILITIES & ANIMATIONS
   ========================================================= */
.bg-light { background: var(--gray-50); }
.bg-pale  { background: var(--green-pale); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* Scroll reveal (JS adds .visible) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a6040 60%, #1e5538 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; font-size: 1.05rem; }
