:root {
  --navy-950: #031a38;
  --navy-900: #062852;
  --navy-700: #174879;
  --green-600: #167c2d;
  --green-500: #2f9d32;
  --gold-500: #d09a25;
  --gold-400: #e0b34c;
  --white: #ffffff;
  --slate-50: #f8fafe;
  --slate-100: #f2f6fb;
  --slate-200: #e4ecf7;
  --slate-300: #d3deee;
  --text-900: #101f3e;
  --text-700: #344567;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 14px 34px rgba(11, 29, 62, 0.08);
  --shadow-strong: 0 20px 46px rgba(8, 25, 58, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-700);
  line-height: 1.65;
  background:
    radial-gradient(circle at 95% 4%, rgba(47, 157, 50, 0.08), transparent 32%),
    radial-gradient(circle at 4% 40%, rgba(208, 154, 37, 0.06), transparent 28%),
    #fff;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #fff;
  color: var(--navy-900);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 40, 82, 0.1);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(6, 40, 82, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.48rem 0;
  position: relative;
}

.logo {
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-name small {
  display: block;
  margin-top: 0.28rem;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a {
  color: var(--navy-900);
  padding: 0.5rem 0.72rem;
  border-radius: 9px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.site-nav a:hover {
  color: var(--green-600);
  background: rgba(47, 157, 50, 0.08);
}

.site-nav a.active {
  color: var(--green-600);
  background: rgba(47, 157, 50, 0.1);
}

.nav-cta {
  border: 1px solid rgba(208, 154, 37, 0.85);
  color: var(--navy-900) !important;
}

.nav-cta.active {
  background: rgba(208, 154, 37, 0.14) !important;
  color: var(--navy-900) !important;
}

.lang-switch {
  border: 1px solid rgba(6, 40, 82, 0.22);
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(6, 40, 82, 0.25);
  background: #fff;
  color: var(--navy-900);
  border-radius: 10px;
  padding: 0.42rem 0.72rem;
  cursor: pointer;
}

.hero {
  color: var(--text-700);
  padding: 5.4rem 0 5rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 157, 50, 0.15), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(208, 154, 37, 0.13), transparent 30%),
    linear-gradient(125deg, #fff 18%, #f7fbf7 62%, #fffaf0);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -90px;
  top: -150px;
  background: radial-gradient(circle, rgba(208, 154, 37, 0.12), transparent 62%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.25;
  color: var(--text-900);
}

.hero h1 {
  color: var(--navy-900);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 0.68rem;
}

.hero p {
  color: var(--text-700);
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-brand {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(6, 40, 82, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(6, 40, 82, 0.14);
}

.hero-brand img {
  width: min(100%, 500px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.78rem 1.18rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(95deg, var(--green-600), var(--green-500));
  color: #fff;
  box-shadow: 0 12px 26px rgba(12, 135, 90, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  border: 1px solid rgba(29, 60, 110, 0.24);
  color: #1f3665;
  background: #fff;
}

.section {
  padding: 4.4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #c8d4e7;
  box-shadow: 0 18px 36px rgba(12, 33, 70, 0.11);
}

.highlight {
  background: linear-gradient(168deg, #fff, #f7faff);
  position: relative;
  overflow: hidden;
  padding-top: 3.1rem;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(16, 165, 112, 0.2), rgba(214, 164, 60, 0.2));
}

.highlight::after {
  position: absolute;
  left: 1.82rem;
  top: 1.72rem;
  font-size: 1rem;
}

.grid-4 .highlight:nth-child(1)::after {
  content: "⚙️";
}

.grid-4 .highlight:nth-child(2)::after {
  content: "🌱";
}

.grid-4 .highlight:nth-child(3)::after {
  content: "🖥️";
}

.grid-4 .highlight:nth-child(4)::after {
  content: "🎓";
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: center;
}

.visual-block {
  min-height: 286px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(130deg, rgba(18, 48, 95, 0.95), rgba(16, 165, 112, 0.9));
}

.domain-card ul,
.service-card ul,
.check-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.domain-card li,
.service-card li,
.check-list li {
  margin-bottom: 0.42rem;
}

.impact-stats {
  display: grid;
  gap: 0.85rem;
}

.stat {
  border: 1px solid #d8e1ef;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.stat strong {
  color: var(--navy-700);
  font-size: 1.7rem;
  display: block;
}

.cta-band {
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(130deg, #112d5c, #19467d);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card h2 {
  color: #153d71;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.shop-intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.7fr);
  align-items: end;
  gap: 1.4rem;
  margin-bottom: 1.35rem;
}

.shop-intro p {
  margin: 0;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shop-category-card {
  min-height: 128px;
}

.shop-category-icon,
.product-placeholder {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(47, 157, 50, 0.14), rgba(208, 154, 37, 0.12));
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.shop-category-card h3 {
  margin-top: 0.75rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 157, 50, 0.14), transparent 32%),
    linear-gradient(150deg, #fff, #f4f8fc);
}

.product-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-media-link {
  transition: filter 0.2s ease;
}

.product-media-link:hover {
  filter: brightness(0.98);
}

.product-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  font-size: 1rem;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.product-meta,
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-meta {
  margin-bottom: 0.85rem;
}

.product-category,
.stock-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-category {
  background: rgba(6, 40, 82, 0.08);
  color: var(--navy-900);
}

.stock-badge.in-stock {
  background: rgba(47, 157, 50, 0.12);
  color: var(--green-600);
}

.stock-badge.on-order {
  background: rgba(208, 154, 37, 0.14);
  color: #8b6113;
}

.stock-badge.out-of-stock {
  background: rgba(166, 30, 43, 0.11);
  color: #a61e2b;
}

.product-reference {
  color: var(--navy-700);
  flex: 0 0 auto !important;
  font-size: 0.88rem;
  font-weight: 700;
  margin: -0.2rem 0 0.5rem;
}

.product-body p {
  flex: 1;
}

.product-footer {
  margin-top: 1rem;
}

.product-price {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.empty-shop {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 1.4rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.85rem;
}

.product-main-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(6, 40, 82, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 10%, rgba(47, 157, 50, 0.14), transparent 32%),
    linear-gradient(150deg, #fff, #f4f8fc);
  box-shadow: var(--shadow-soft);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-main-placeholder {
  min-height: 360px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 0.65rem;
}

.product-thumb {
  display: grid;
  place-items: center;
  height: 82px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 40, 82, 0.08);
}

.product-thumb.active {
  border-color: var(--green-500);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-card {
  position: sticky;
  top: 96px;
}

.product-detail-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.product-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 0.65rem;
}

.product-detail-list dt {
  color: var(--text-700);
  font-weight: 700;
}

.product-detail-list dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
  text-align: right;
}

.product-extra-details {
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--slate-200);
  padding: 1rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 20%, rgba(47, 157, 50, 0.13), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(208, 154, 37, 0.1), transparent 28%),
    linear-gradient(122deg, #fff, #f5faf5 62%, #fffaf0);
  color: var(--text-700);
  padding: 4.35rem 0;
}

.page-hero h1,
.page-hero p {
  color: var(--navy-900);
}

.text-link {
  color: var(--green-500);
  font-weight: 600;
}

.text-link:hover {
  color: var(--green-600);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.95rem;
}

.contact-details {
  font-style: normal;
}

.contact-details a,
.contact-links a {
  text-decoration: underline;
  text-decoration-color: rgba(16, 165, 112, 0.45);
  text-underline-offset: 0.2em;
}

.contact-details a:hover,
.contact-links a:hover {
  text-decoration-color: currentColor;
}

.legal-content {
  max-width: 920px;
}

.legal-content article {
  padding: 1.65rem;
}

.legal-content h2 {
  margin-top: 1.45rem;
}

.legal-content h2:first-of-type {
  margin-top: 0.8rem;
}

.legal-content a {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-updated {
  color: var(--navy-700);
}

label {
  margin-bottom: 0.42rem;
  font-weight: 600;
  color: #183766;
}

.form-control,
input,
textarea {
  width: 100%;
  border: 1px solid #cad6e8;
  border-radius: 10px;
  padding: 0.74rem 0.82rem;
  font: inherit;
  background: #fff;
}

.form-control:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #5c87cc;
  box-shadow: 0 0 0 4px rgba(92, 135, 204, 0.17);
}

.form-error {
  color: #a61e2b;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.form-note {
  border-left: 4px solid var(--green-500);
  border-radius: 10px;
  background: rgba(47, 157, 50, 0.08);
  color: var(--navy-900);
  padding: 0.75rem 0.9rem;
}

.messages {
  margin-top: 1rem;
}

.message {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
}

.message.success {
  border-color: #8cd9b8;
  background: #eafcf3;
  color: #176040;
}

.site-footer {
  background:
    radial-gradient(circle at 18% -14%, rgba(16, 165, 112, 0.18), transparent 34%),
    #081832;
  color: #cad8f7;
  margin-top: 2.7rem;
  padding-top: 2.7rem;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.footer-brand-heading h3 {
  margin: 0;
}

.footer-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1.35rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.42rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.4rem;
  padding: 0.85rem 0 1.25rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(5, 80, 42, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 20px 42px rgba(5, 80, 42, 0.34);
  transform: translateY(-2px);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .grid-4,
  .grid-3,
  .shop-category-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list,
  .shop-intro,
  .product-detail-layout,
  .two-col,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .product-detail-card {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(6, 40, 82, 0.12);
    padding: 0.8rem 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 34px rgba(6, 40, 82, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 4.5rem 0 4rem;
  }

  .product-main-image {
    min-height: 300px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-name small {
    font-size: 0.62rem;
  }

  .grid-4,
  .grid-3,
  .shop-category-grid,
  .footer-grid,
  .service-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.65rem 0.85rem;
  }
}
