/* Root variables */
:root {
  --primary-green: #16610e;
  --accent-orange: #f97a00;
  --highlight-yellow: #fed16a;
  --bg-cream: #fff4a4;
  --text-dark: #0e3b07;
  --max-width: 1100px;
}

/* Global */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
.heading-font {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg-cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header / Navigation (restored) */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1.1rem;
}
.logo-accent {
  color: var(--accent-orange);
  font-weight: 800;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
}
.nav a:hover {
  background: rgba(22, 97, 14, 0.04);
}
.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px 0;
  transition: all 0.25s;
}
.nav.open {
  display: flex;
  flex-direction: column;
}

/* Small helpers */
.bg-soft {
  background: linear-gradient(
    90deg,
    rgba(254, 209, 106, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  padding: 1rem;
  border-radius: 12px;
}

.hero {
  padding: 4.4rem 0;
  min-height: 68vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.6rem;
  align-items: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 0.6rem;
  color: var(--primary-green);
  line-height: 1.02;
}
.hero .lead {
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.63);
  font-size: 1.04rem;
}
.btn-primary {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 6px 18px rgba(249, 122, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s;
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.06)
  );
  transform: skewX(-20deg) translateX(0);
  transition: transform 0.6s ease;
  opacity: 0.9;
}
.btn-primary:hover::after {
  transform: skewX(-20deg) translateX(250%);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(249, 122, 0, 0.18);
}

.gear {
  display: block;
}
.gear .gear-track {
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  transition: stroke-dashoffset 1s ease;
}
.gear.in-view .gear-track {
  stroke-dashoffset: 0;
}
.gear .teeth {
  transform-origin: 50% 50%;
  transition: transform 0.6s linear;
}
.gear.rotate {
  animation: spin 6s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Products Section */
.products {
  padding: 2.4rem 0;
}
.product-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.45)
  );
  padding: 1.4rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.25s;
  opacity: 0;
  transform: translateY(10px);
}

/* Small helper for icon containers used in service cards */
.card-icon {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}
.service-body {
  flex: 1;
}
.service-desc {
  color: rgba(0, 0, 0, 0.65);
  margin: 0.25rem 0 0;
}
.service-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}
.service-link:hover {
  text-decoration: underline;
}

/* Icon line-draw */
.icon-line {
  stroke: var(--primary-green);
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 0.9s ease, transform 0.6s;
}
.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-card.in-view .icon-line {
  stroke-dashoffset: 0;
  transform: translateY(0);
}

/* Hover glow and highlight backgrounds */
.service-card.highlight-yellow {
  background: linear-gradient(
    180deg,
    rgba(254, 209, 106, 0.06),
    rgba(255, 255, 255, 0.85)
  );
}
.service-card.highlight-orange {
  background: linear-gradient(
    180deg,
    rgba(249, 122, 0, 0.06),
    rgba(255, 255, 255, 0.9)
  );
}
.service-card:hover {
  box-shadow: 0 34px 80px rgba(22, 97, 14, 0.06);
  .product-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }
  .card-icon {
    color: var(--primary-green);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
  }
  .icon-draw {
    stroke: var(--primary-green);
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    transition: stroke-dashoffset 0.9s ease, transform 0.6s;
  }
  .product-card.in-view .icon-draw {
    stroke-dashoffset: 0;
    transform: translateY(0);
  }

  /* initial hidden states for sections and art */
  main > section {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .product-card {
    will-change: transform, opacity;
  }
  .hand-tool {
    will-change: transform, opacity;
  }
  .icon-draw {
    will-change: stroke-dashoffset, transform;
  }
  .product-card h3 {
    margin: 0.2rem 0;
  }
  .product-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
  }

  /* Hover glow overlay */
  .product-card {
    position: relative;
    overflow: hidden;
  }
  .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(249, 122, 0, 0.06),
      rgba(254, 209, 106, 0.06)
    );
    opacity: 0;
    transition: opacity 0.22s;
  }
  .product-card:hover::before {
    opacity: 1;
  }

  /* Features */
  .features {
    padding: 2.2rem 0;
  }
  .features-list {
    display: grid;
    gap: 1rem;
  }
  .feature {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    background: transparent;
  }
  .feature.alt {
    background: linear-gradient(
      90deg,
      rgba(254, 209, 106, 0.15),
      rgba(254, 209, 106, 0.06)
    );
  }
  .feature-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-green);
  }
  .feature-copy h3 {
    margin: 0 0 0.25rem;
  }

  /* About */
  .about {
    padding: 2.6rem 0;
  }
  /* Unique About section styles */
  .about-unique {
    padding: 3rem 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(254, 209, 106, 0.02)
    );
  }
  .about-unique-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.6rem;
    align-items: start;
  }
  @media (max-width: 880px) {
    .about-unique-inner {
      grid-template-columns: 1fr;
    }
  }
  .about-left {
    padding-right: 1rem;
  }
  .pillars {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
  }
  .pillar {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.9)
    );
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  }
  .pill-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 8px;
    background: rgba(22, 97, 14, 0.06);
    color: var(--primary-green);
  }
  .pill-copy h4 {
    margin: 0 0 0.25rem;
    color: var(--primary-green);
  }
  .about-cta {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.8rem;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .about-art-wrap {
    background: linear-gradient(
      180deg,
      rgba(254, 209, 106, 0.06),
      rgba(255, 255, 255, 0.9)
    );
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 0.6rem;
    text-align: center;
  }
  .about-stats .stat {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
  }
  .about-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.6rem;
  }

  /* arrange stats nicely on larger screens */
  @media (min-width: 900px) {
    .about-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.6rem;
    }
    .about-stats .stat-label {
      margin-bottom: 0;
    }
  }

  /* stat animation helper */
  .stat[data-target] {
    transition: transform 0.28s;
  }
  .hero-copy {
    padding-right: 1rem;
  }
  .hero-headline {
    font-size: 2.2rem;
    margin: 0 0 0.6rem;
    color: var(--primary-green);
    line-height: 1.02;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .hero-sub {
    margin: 0 0 1rem;
    color: rgba(0, 0, 0, 0.63);
    font-size: 1.03rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .hero-buttons {
    display: flex;
    gap: 0.8rem;
  }
  .btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 8px 24px rgba(249, 122, 0, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s;
  }
  .btn-primary:hover {
    background: var(--highlight-yellow);
    color: var(--text-dark);
    transform: scale(1.03);
  }
  .btn-secondary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
  }

  /* Button bounce on load */
  .hero .btn {
    transform-origin: center;
  }
  .hero .btn.bounce {
    animation: btnBounce 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) both;
  }
  @keyframes btnBounce {
    0% {
      transform: translateY(8px) scale(0.98);
    }
    50% {
      transform: translateY(-2px) scale(1.02);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }

  /* Reveal when in-view */
  .hero.in-view .hero-headline {
    opacity: 1;
    transform: translateX(0);
  }
  .hero.in-view .hero-sub {
    opacity: 1;
    transform: translateY(0);
  }
  .hero.in-view .btn {
    opacity: 1;
  }

  /* SVG illustration animations */
  .tech-illustration .line {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    transition: stroke-dashoffset 1s ease;
  }
  .tech-illustration.in-view .line {
    stroke-dashoffset: 0;
  }
  .tech-illustration .servers rect {
    opacity: 0;
    transform-origin: left center;
    transform: translateY(12px);
  }
  .tech-illustration.in-view .servers rect {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s;
  }
  .tech-illustration .leds circle {
    opacity: 0;
    transform: scale(0.8);
  }
  .tech-illustration.in-view .leds circle {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
  }

  /* Mobile */
  @media (max-width: 700px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .hero-art {
      order: 2;
    }
    .hero-copy {
      order: 1;
    }
    .hero-headline {
      font-size: 1.6rem;
    }
  }
  gap: 1.6rem;
  align-items: center;
}
.about-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hand-tool {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about.in-view .hand-tool {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Testimonials */
.testimonials {
  padding: 2rem 0;
}
.testimonial-wrap {
  position: relative;
  min-height: 90px;
}
.testimonial {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.5s;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}
.testimonial {
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  padding: 1rem;
  border-left: 4px solid var(--primary-green);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

/* Contact */
.contact {
  padding: 2.4rem 0;
  background: transparent;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.4rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background: white;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(22, 97, 14, 0.06);
}
.btn-gradient {
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--highlight-yellow)
  );
  color: white;
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s;
}
.btn-gradient:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(249, 122, 0, 0.12);
}
.contact-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg-svg {
  transition: transform 0.25s ease;
}
.msg-svg:hover {
  transform: scale(1.06);
}

/* Redesigned Contact Panel */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.6rem;
  align-items: start;
}
.contact-left {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.contact-head h2 {
  margin: 0 0 0.4rem;
  color: var(--primary-green);
}
.contact-head .muted {
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form .field-row {
  display: flex;
  gap: 0.8rem;
}
.contact-form .field {
  flex: 1;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.form-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.6rem;
}
.form-success {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.98));
  padding: 0.8rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.card-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(22, 97, 14, 0.06);
  color: var(--primary-green);
}
.card-title {
  font-weight: 700;
  color: var(--primary-green);
}
.card-link {
  color: var(--text-dark);
  text-decoration: none;
}
.contact-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-right {
    order: 2;
  }
  .contact-left {
    order: 1;
  }
}

/* Small utilities to reveal elements */
.in-view {
  opacity: 1;
  transform: none;
}
.hidden {
  opacity: 0;
  transform: translateY(12px);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: var(--bg-cream);
  padding: 1rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.footer-about h3 {
  margin: 0 0 0.4rem;
}
.footer a {
  color: var(--bg-cream);
  text-decoration: none;
  display: block;
  margin: 0.25rem 0;
}
.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.6rem;
}
.footer-newsletter .btn {
  width: 100%;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  font-size: 0.95rem;
}
.footer-mini-links a {
  margin-left: 0.8rem;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 1.6rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .nav {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    background: linear-gradient(
      180deg,
      var(--bg-cream),
      rgba(255, 244, 164, 0.96)
    );
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  .hamburger {
    display: block;
  }
  .nav.open {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: 2;
    margin-bottom: 1rem;
  }
  .hero {
    min-height: 52vh;
    padding: 2.4rem 0;
  }
}

/* Section spacing */
main > section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Section comments for single CSS file (keeps blocks visible) */
/* Header */
/* Hero */
/* Products Section */
/* Features */
/* About */
/* Testimonials */
/* Contact */
/* Footer */

/* Services */
.services {
  padding: 2.6rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.service-card {
  padding: 1.2rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.9));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}
.service-card.highlight-yellow {
  border-left: 6px solid var(--highlight-yellow);
}
.service-card.highlight-orange {
  border-left: 6px solid var(--accent-orange);
}

/* Tech graphic */
.tech-graphic {
  opacity: 0.95;
}
.tech-graphic .flow {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s ease;
}
.tech-graphic.in-view .flow {
  stroke-dashoffset: 0;
}
.tech-graphic .nodes circle {
  transform-origin: center;
  animation: nodePulse 2.6s ease-in-out infinite;
}
@keyframes nodePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* Solutions */
.solutions {
  padding: 3rem 0;
  background: linear-gradient(
    180deg,
    rgba(254, 209, 106, 0.16),
    rgba(255, 244, 164, 0.04)
  );
}

/* Solutions grid: responsive 1-col -> 2-col zig-zag */
.solutions .container {
  display: block;
}
.solutions .section-title {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.solutions .section-sub {
  margin-bottom: 1.2rem;
  color: rgba(0, 0, 0, 0.62);
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 840px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.solution-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.9)
  );
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s,
    border-color 0.18s;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(12px);
}
.solution-card:nth-child(odd) {
  transform-origin: left center;
}
.solution-card:nth-child(even) {
  transform-origin: right center;
}
.solution-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.solution-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 80px rgba(249, 122, 0, 0.12);
  border: 1px solid rgba(249, 122, 0, 0.08);
}
.solution-card .sol-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(22, 97, 14, 0.04),
    rgba(255, 255, 255, 0.6)
  );
  color: var(--primary-green);
}
.sol-icon {
  width: 56px;
  height: 56px;
  color: var(--primary-green);
  stroke: currentColor;
  fill: none;
  transition: transform 0.44s ease, filter 0.28s ease;
}
.solution-card:hover .sol-icon {
  transform: scale(1.06) rotate(6deg);
  filter: drop-shadow(0 6px 10px rgba(249, 122, 0, 0.12));
}
.sol-body h3 {
  margin: 0 0 0.35rem;
  color: var(--primary-green);
}
.sol-body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
}
.solutions-cta {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}
.solutions-cta .btn-primary {
  background: var(--accent-orange);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
}
.solutions-cta .btn-primary:hover {
  background: var(--highlight-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* slide-in directions for odd/even */
.solution-card.slide-from-left {
  transform: translateX(-28px) translateY(12px);
}
.solution-card.slide-from-right {
  transform: translateX(28px) translateY(12px);
}
.solution-card.in-view.slide-from-left,
.solution-card.in-view.slide-from-right {
  transform: translateX(0) translateY(0);
  transition: transform 0.68s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.6s;
}

/* Portfolio */
.portfolio {
  padding: 2.4rem 0;
}
.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.filter-btn {
  background: transparent;
  border: 2px solid transparent;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--primary-green);
  color: var(--bg-cream);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.project {
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff9);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.7);
}

/* Contact split layout */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.6rem;
}
.contact-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Small helpers */
.bg-soft {
  background: linear-gradient(
    90deg,
    rgba(254, 209, 106, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  padding: 1rem;
  border-radius: 12px;
}
